diff --git a/apps/docs/content/guides/ai/integrations/roboflow.mdx b/apps/docs/content/guides/ai/integrations/roboflow.mdx
index db24a974d01c6..2b9d61fc7ace2 100644
--- a/apps/docs/content/guides/ai/integrations/roboflow.mdx
+++ b/apps/docs/content/guides/ai/integrations/roboflow.mdx
@@ -111,7 +111,7 @@ data=[{'predictions': {'time': 0.08492901099998562, 'image': {'width': 640, 'hei
You can use the Supabase vector database functionality to store and query CLIP embeddings.
-Roboflow Inference provides a HTTP interface through which you can calculate image and text embeddings using CLIP.
+Roboflow Inference provides an HTTP interface through which you can calculate image and text embeddings using CLIP.
### Step 1: Install and start Roboflow Inference
diff --git a/apps/docs/content/guides/api/securing-your-api.mdx b/apps/docs/content/guides/api/securing-your-api.mdx
index 32274596639f5..599d593223ced 100644
--- a/apps/docs/content/guides/api/securing-your-api.mdx
+++ b/apps/docs/content/guides/api/securing-your-api.mdx
@@ -99,7 +99,7 @@ notify pgrst, 'reload config';
<$Partial path="db_pre_request_warning.mdx" />
-Inside the function you can perform any additional checks on the request headers or JWT and raise an exception to prevent the request from completing. For example, this exception raises a HTTP 402 Payment Required response with a `hint` and additional `X-Powered-By` header:
+Inside the function you can perform any additional checks on the request headers or JWT and raise an exception to prevent the request from completing. For example, this exception raises an HTTP 402 Payment Required response with a `hint` and additional `X-Powered-By` header:
```sql
raise sqlstate 'PGRST' using
@@ -186,7 +186,7 @@ You can only rate-limit `POST`, `PUT`, `PATCH` and `DELETE` requests. This is be
Outline:
- A new row is added to a `private.rate_limits` table each time a modifying action is done to the database containing the IP address and the timestamp of the action.
-- If there are over 100 requests from the same IP address in the last 5 minutes, the request is rejected with a HTTP 420 code.
+- If there are over 100 requests from the same IP address in the last 5 minutes, the request is rejected with an HTTP 420 code.
Create the table:
diff --git a/apps/docs/content/guides/auth/auth-hooks.mdx b/apps/docs/content/guides/auth/auth-hooks.mdx
index 04fef7cbb096b..94471ff88032e 100644
--- a/apps/docs/content/guides/auth/auth-hooks.mdx
+++ b/apps/docs/content/guides/auth/auth-hooks.mdx
@@ -42,7 +42,7 @@ A [Postgres function](/docs/guides/database/functions) can be configured as a ho
-A HTTP Hook is an endpoint which takes in a JSON event payload and returns a JSON response. You can use any HTTP endpoint as a Hook, including an endpoint in your application. The easiest way to create a HTTP hook is to create a [Supabase Edge Function](/docs/guides/functions/quickstart).
+An HTTP Hook is an endpoint which takes in a JSON event payload and returns a JSON response. You can use any HTTP endpoint as a Hook, including an endpoint in your application. The easiest way to create an HTTP hook is to create a [Supabase Edge Function](/docs/guides/functions/quickstart).
@@ -97,7 +97,7 @@ HTTP Hooks in Supabase follow the [Standard Webhooks Specification](https://www.
When the request is made to the HTTP hook, you should use the [Standard Webhooks libraries](https://github.com/standard-webhooks/standard-webhooks/tree/main/libraries) to verify these headers.
-When a HTTP hook is created, the secret generated should be of the `v1,whsec_` format:
+When an HTTP hook is created, the secret generated should be of the `v1,whsec_` format:
- `v1` denotes the version of the hook
- `whsec_` signifies that the secret is symmetric
@@ -303,7 +303,7 @@ Here's an example:
}
```
-Errors returned from a Postgres Hook are not retry-able. When an error is returned, the error is propagated from the hook to Supabase Auth and translated into a HTTP error which is returned to your application. Supabase Auth will only take into account the error and disregard the rest of the payload.
+Errors returned from a Postgres Hook are not retry-able. When an error is returned, the error is propagated from the hook to Supabase Auth and translated into an HTTP error which is returned to your application. Supabase Auth will only take into account the error and disregard the rest of the payload.
diff --git a/apps/docs/content/guides/auth/auth-hooks/before-user-created-hook.mdx b/apps/docs/content/guides/auth/auth-hooks/before-user-created-hook.mdx
index 196d0c6e7d37f..fc784ace00530 100644
--- a/apps/docs/content/guides/auth/auth-hooks/before-user-created-hook.mdx
+++ b/apps/docs/content/guides/auth/auth-hooks/before-user-created-hook.mdx
@@ -173,7 +173,7 @@ This response will block the user creation and return the error message to the c
## Examples
-Each of the following examples shows how to use the `before-user-created` hook to control signup behavior. Each use case includes both a HTTP implementation (e.g. using an Edge Function) and a SQL implementation (Postgres function).
+Each of the following examples shows how to use the `before-user-created` hook to control signup behavior. Each use case includes both an HTTP implementation (e.g. using an Edge Function) and a SQL implementation (Postgres function).
-You can notify a user via email instead of blocking the user. To do so, make use of [Supabase Vault](/docs/guides/database/vault) to store the API Key of our mail provider and use [`pg_net`](/docs/guides/database/extensions/pg_net) to send a HTTP request to our email provider to send the email. Ensure that you have configured a sender signature for the email account which you are sending emails from.
+You can notify a user via email instead of blocking the user. To do so, make use of [Supabase Vault](/docs/guides/database/vault) to store the API Key of our mail provider and use [`pg_net`](/docs/guides/database/extensions/pg_net) to send an HTTP request to our email provider to send the email. Ensure that you have configured a sender signature for the email account which you are sending emails from.
First, create a table to track sign in attempts.
diff --git a/apps/docs/content/guides/auth/auth-mfa.mdx b/apps/docs/content/guides/auth/auth-mfa.mdx
index 719528aa2e284..abf5340f9803f 100644
--- a/apps/docs/content/guides/auth/auth-mfa.mdx
+++ b/apps/docs/content/guides/auth/auth-mfa.mdx
@@ -282,7 +282,7 @@ However, encountering a different AAL level on the server may not actually be a
3. User has lost their authenticator device and is confused about the next
steps.
-We thus recommend you redirect users to a page where they can authenticate using their additional factor, instead of rendering a HTTP 401 Unauthorized or HTTP 403 Forbidden content.
+We thus recommend you redirect users to a page where they can authenticate using their additional factor, instead of rendering an HTTP 401 Unauthorized or HTTP 403 Forbidden content.
### APIs
diff --git a/apps/docs/content/guides/auth/third-party/firebase-auth.mdx b/apps/docs/content/guides/auth/third-party/firebase-auth.mdx
index 3d8fd20cf4f28..870b790c0cbcf 100644
--- a/apps/docs/content/guides/auth/third-party/firebase-auth.mdx
+++ b/apps/docs/content/guides/auth/third-party/firebase-auth.mdx
@@ -36,7 +36,7 @@ const supabase = createClient(
)
```
-Make sure the all users in your application have the `role: 'authenticated'` [custom claim](https://firebase.google.com/docs/auth/admin/custom-claims) set. If you're using the `onCreate` Cloud Function to add this custom claim to newly signed up users, you will need to call `getIdToken(/* forceRefresh */ true)` immediately after sign up as the `onCreate` function does not run synchronously.
+Make sure all users in your application have the `role: 'authenticated'` [custom claim](https://firebase.google.com/docs/auth/admin/custom-claims) set. If you're using the `onCreate` Cloud Function to add this custom claim to newly signed up users, you will need to call `getIdToken(/* forceRefresh */ true)` immediately after sign up as the `onCreate` function does not run synchronously.
@@ -58,7 +58,7 @@ await Supabase.initialize(
);
```
-Make sure the all users in your application have the `role: 'authenticated'` [custom claim](https://firebase.google.com/docs/auth/admin/custom-claims) set. If you're using the `onCreate` Cloud Function to add this custom claim to newly signed up users, you will need to call `getIdToken(/* forceRefresh */ true)` immediately after sign up as the `onCreate` function does not run synchronously.
+Make sure all users in your application have the `role: 'authenticated'` [custom claim](https://firebase.google.com/docs/auth/admin/custom-claims) set. If you're using the `onCreate` Cloud Function to add this custom claim to newly signed up users, you will need to call `getIdToken(/* forceRefresh */ true)` immediately after sign up as the `onCreate` function does not run synchronously.
$Show>
diff --git a/apps/docs/content/guides/local-development/testing/pgtap-extended.mdx b/apps/docs/content/guides/local-development/testing/pgtap-extended.mdx
index 017b29eede956..1e4fbf574118a 100644
--- a/apps/docs/content/guides/local-development/testing/pgtap-extended.mdx
+++ b/apps/docs/content/guides/local-development/testing/pgtap-extended.mdx
@@ -345,7 +345,7 @@ Now to setup the RLS policies for each tables:
```sql
-- Create a private schema to store all security definer functions utils
--- As such functions should never be in a API exposed schema
+-- As such functions should never be in an API exposed schema
create schema if not exists private;
-- Helper function for role checks
create or replace function private.get_user_org_role(org_id bigint, user_id uuid)
diff --git a/apps/docs/content/guides/realtime/broadcast.mdx b/apps/docs/content/guides/realtime/broadcast.mdx
index 70dda780c948d..7fd48580d3e11 100644
--- a/apps/docs/content/guides/realtime/broadcast.mdx
+++ b/apps/docs/content/guides/realtime/broadcast.mdx
@@ -293,7 +293,7 @@ You can use the Supabase client libraries to send Broadcast messages.
/**
- * Sending a message after subscribing will use Websockets
+ * Sending a message after subscribing will use WebSockets
*/
myChannel.subscribe((status) => {
if (status !== 'SUBSCRIBED') {
@@ -325,7 +325,7 @@ You can use the Supabase client libraries to send Broadcast messages.
);
print(res);
- // Sending a message after subscribing will use Websockets
+ // Sending a message after subscribing will use WebSockets
myChannel.subscribe((status, error) {
if (status != RealtimeSubscribeStatus.subscribed) {
return;
@@ -352,7 +352,7 @@ You can use the Supabase client libraries to send Broadcast messages.
// Sending a message before subscribing will use HTTP
await myChannel.broadcast(event: "shout", message: ["message": "HI"])
- // Sending a message after subscribing will use Websockets
+ // Sending a message after subscribing will use WebSockets
await myChannel.subscribe()
try await myChannel.broadcast(
event: "shout",
@@ -376,7 +376,7 @@ You can use the Supabase client libraries to send Broadcast messages.
put("message", "Hi")
})
- // Sending a message after subscribing will use Websockets
+ // Sending a message after subscribing will use WebSockets
myChannel.subscribe(blockUntilSubscribed = true)
channelB.broadcast(
event = "shout",
@@ -401,7 +401,7 @@ You can use the Supabase client libraries to send Broadcast messages.
```python
my_channel = supabase.channel('test-channel')
- # Sending a message after subscribing will use Websockets
+ # Sending a message after subscribing will use WebSockets
def on_subscribe(status, err):
if status != RealtimeSubscribeStates.SUBSCRIBED:
return
@@ -909,7 +909,7 @@ SELECT realtime.send (
#### Setup realtime authorization
-Realtime Authorization is required and enabled by default. To allow your users to listen to messages from topics, create a RLS (Row Level Security) policy:
+Realtime Authorization is required and enabled by default. To allow your users to listen to messages from topics, create an RLS (Row Level Security) policy:
```sql
CREATE POLICY "authenticated can receive broadcasts"
diff --git a/apps/docs/content/guides/storage/debugging/error-codes.mdx b/apps/docs/content/guides/storage/debugging/error-codes.mdx
index ff7f809531c47..089f20b8fffed 100644
--- a/apps/docs/content/guides/storage/debugging/error-codes.mdx
+++ b/apps/docs/content/guides/storage/debugging/error-codes.mdx
@@ -126,7 +126,7 @@ Here's a list of the most common error codes and their potential resolutions:
Indicates that the resource is not found or you don't have the correct permission to access it
**Resolution:**
-- Add a RLS policy to grant permission to the resource. See our [Access Control docs](/docs/guides/storage/security/access-control) for more information.
+- Add an RLS policy to grant permission to the resource. See our [Access Control docs](/docs/guides/storage/security/access-control) for more information.
- Ensure you include the user `Authorization` header
- Verify the object exists
diff --git a/apps/docs/content/guides/telemetry/log-drains.mdx b/apps/docs/content/guides/telemetry/log-drains.mdx
index 525102a8df93f..9bf926f643d13 100644
--- a/apps/docs/content/guides/telemetry/log-drains.mdx
+++ b/apps/docs/content/guides/telemetry/log-drains.mdx
@@ -82,7 +82,7 @@ This will create an infinite loop, as we are generating an additional log event
2. Configure the HTTP Drain
-Create a HTTP drain under the [Project Settings > Log Drains](/dashboard/project/_/settings/log-drains).
+Create an HTTP drain under the [Project Settings > Log Drains](/dashboard/project/_/settings/log-drains).
- Disable the Gzip, as we want to receive the payload without compression.
- Under URL, set it to your edge function URL `https://[PROJECT REF].supabase.co/functions/v1/hello-world`
diff --git a/apps/docs/content/troubleshooting/customizing-emails-by-language-KZ_38Q.mdx b/apps/docs/content/troubleshooting/customizing-emails-by-language-KZ_38Q.mdx
index 38b42fd7fe267..9eb2184cbcaf9 100644
--- a/apps/docs/content/troubleshooting/customizing-emails-by-language-KZ_38Q.mdx
+++ b/apps/docs/content/troubleshooting/customizing-emails-by-language-KZ_38Q.mdx
@@ -38,7 +38,7 @@ It can be accessed in a project's [Email Templates](/dashboard/project/_/auth/te
If you need to update a user's meta-data, you can do so with the [`updateUser`](/docs/reference/javascript/auth-updateuser?example=update-the-users-metadata) function.
-The meta-data can be used to store a users language preferences. You could then use "if statements" in the email template to set the response for a specific language:
+The meta-data can be used to store a user's language preferences. You could then use "if statements" in the email template to set the response for a specific language:
```html
{{if eq .Data.language "en" }}
diff --git a/apps/docs/content/troubleshooting/prisma-error-management-Cm5P_o.mdx b/apps/docs/content/troubleshooting/prisma-error-management-Cm5P_o.mdx
index bde497118465b..236cc626eb9bb 100644
--- a/apps/docs/content/troubleshooting/prisma-error-management-Cm5P_o.mdx
+++ b/apps/docs/content/troubleshooting/prisma-error-management-Cm5P_o.mdx
@@ -63,7 +63,7 @@ Add pgbouncer=true to the connection string.
## `Max client connections reached`
-Checkout this [guide](https://github.com/orgs/supabase/discussions/22305) for managing this error
+Check out this [guide](https://github.com/orgs/supabase/discussions/22305) for managing this error
## `Server has closed the connection`
diff --git a/apps/docs/content/troubleshooting/scan-error-on-column-confirmation_token-converting-null-to-string-is-unsupported-during-auth-login-a0c686.mdx b/apps/docs/content/troubleshooting/scan-error-on-column-confirmation_token-converting-null-to-string-is-unsupported-during-auth-login-a0c686.mdx
index 8e0f51128fd65..5618ac711c61d 100644
--- a/apps/docs/content/troubleshooting/scan-error-on-column-confirmation_token-converting-null-to-string-is-unsupported-during-auth-login-a0c686.mdx
+++ b/apps/docs/content/troubleshooting/scan-error-on-column-confirmation_token-converting-null-to-string-is-unsupported-during-auth-login-a0c686.mdx
@@ -9,7 +9,7 @@ http_status_code = 500
message = "error finding user: sql: Scan error on column 'confirmation_token': converting NULL to string is unsupported"
---
-If you encounter a HTTP 500 error during authentication with the message `error finding user: sql: Scan error on column "confirmation_token": converting NULL to string is unsupported`, this typically indicates that the GoTrue Auth service found a `NULL` value in the `auth.users.confirmation_token` column, where a non-nullable string is expected.
+If you encounter an HTTP 500 error during authentication with the message `error finding user: sql: Scan error on column "confirmation_token": converting NULL to string is unsupported`, this typically indicates that the GoTrue Auth service found a `NULL` value in the `auth.users.confirmation_token` column, where a non-nullable string is expected.
To resolve this, update the `confirmation_token` to an empty string where it is `NULL`. You can execute the following SQL query in the [SQL Editor](/dashboard/project/_/sql/new):
diff --git a/apps/docs/docs/ref/javascript/v1/upgrade-guide.mdx b/apps/docs/docs/ref/javascript/v1/upgrade-guide.mdx
index fc529451c7257..3c754c40a7523 100644
--- a/apps/docs/docs/ref/javascript/v1/upgrade-guide.mdx
+++ b/apps/docs/docs/ref/javascript/v1/upgrade-guide.mdx
@@ -6,7 +6,7 @@ description: 'Learn how to upgrade to supabase-js v2.'
supabase-js v2 focuses on "quality-of-life" improvements for developers and addresses some of the largest pain points in v1. v2 includes type support, a rebuilt Auth library with async methods, improved errors, and more.
-No new features will be added to supabase-js v1 , but we'll continuing merging security fixes to v1, with maintenance patches for the next 3 months.
+No new features will be added to supabase-js v1, but we'll continue merging security fixes to v1, with maintenance patches for the next 3 months.
## Upgrade the client library
@@ -462,7 +462,7 @@ The cookie-related methods like `setAuthCookie` and `getUserByCookie` have been
For Next.js you can use the [Auth Helpers](https://supabase.com/docs/guides/auth/auth-helpers/nextjs) to help you manage cookies.
If you can't use the Auth Helpers, you can use [server-side rendering](https://supabase.com/docs/guides/auth/server-side-rendering).
-Some the [PR](https://github.com/supabase/gotrue-js/pull/340) for additional background information.
+See the [PR](https://github.com/supabase/gotrue-js/pull/340) for additional background information.
### Data methods
diff --git a/apps/docs/docs/ref/kotlin/installing.mdx b/apps/docs/docs/ref/kotlin/installing.mdx
index 5c4a05158b273..510b368371cc4 100644
--- a/apps/docs/docs/ref/kotlin/installing.mdx
+++ b/apps/docs/docs/ref/kotlin/installing.mdx
@@ -28,7 +28,7 @@ custom_edit_url: https://github.com/supabase/supabase/edit/master/web/spec/supab
- [**postgrest-kt**](https://github.com/supabase-community/supabase-kt/tree/master/Postgrest)
- Other plugins also available [here](https://github.com/supabase-community/supabase-kt/tree/master/plugins)
- Checkout the different READMEs for information about supported Kotlin targets.
+ Check out the different READMEs for information about supported Kotlin targets.
*Note that the minimum Android SDK version is 26. For lower versions, you need to enable [core library desugaring](https://developer.android.com/studio/write/java8-support#library-desugaring).*
@@ -96,7 +96,7 @@ custom_edit_url: https://github.com/supabase/supabase/edit/master/web/spec/supab
You can find a list of engines [here](https://ktor.io/docs/http-client-engines.html)
- - Note that not all Ktor engines support Websockets. So if you plan to use the Realtime module, make sure to use an engine that supports Websockets. Checkout the [engine limitations](https://ktor.io/docs/client-engines.html#limitations) for more information.
+ - Note that not all Ktor engines support WebSockets. So if you plan to use the Realtime module, make sure to use an engine that supports WebSockets. Check out the [engine limitations](https://ktor.io/docs/client-engines.html#limitations) for more information.
- If using `supabase-kt` 3.0.0 and above, you need to use Ktor version 3.0.0-rc-1 or later.
diff --git a/apps/docs/docs/ref/kotlin/v2/installing.mdx b/apps/docs/docs/ref/kotlin/v2/installing.mdx
index 80d450bbba5aa..001b5c2031602 100644
--- a/apps/docs/docs/ref/kotlin/v2/installing.mdx
+++ b/apps/docs/docs/ref/kotlin/v2/installing.mdx
@@ -92,7 +92,7 @@ custom_edit_url: https://github.com/supabase/supabase/edit/master/web/spec/supab
You can find a list of engines [here](https://ktor.io/docs/http-client-engines.html)
- Note that not all Ktor engines support Websockets. So if you plan to use the Realtime module, make sure to use an engine that supports Websockets. Checkout the [engine limitations](https://ktor.io/docs/client-engines.html#limitations) for more information.
+ Note that not all Ktor engines support WebSockets. So if you plan to use the Realtime module, make sure to use an engine that supports WebSockets. Check out the [engine limitations](https://ktor.io/docs/client-engines.html#limitations) for more information.
diff --git a/apps/docs/docs/ref/realtime/realtime.mdx b/apps/docs/docs/ref/realtime/realtime.mdx
index 890440d0ee922..5ca54f2036198 100644
--- a/apps/docs/docs/ref/realtime/realtime.mdx
+++ b/apps/docs/docs/ref/realtime/realtime.mdx
@@ -19,7 +19,7 @@ There are two versions of this server: `Realtime` and `Realtime RLS`.
`Realtime RLS` server works by:
1. polling PostgreSQL's replication functionality (using PostgreSQL's logical decoding and [wal2json](https://github.com/eulerto/wal2json) output plugin)
-2. passing database changes to a [Write Ahead Log Realtime Unified Security (WALRUS)](https://github.com/supabase/walrus) PostgresSQL function and receiving a list of authorized subscribers depending on Row Level Security (RLS) policies
+2. passing database changes to a [Write Ahead Log Realtime Unified Security (WALRUS)](https://github.com/supabase/walrus) PostgreSQL function and receiving a list of authorized subscribers depending on Row Level Security (RLS) policies
3. converting the changes into JSON
4. broadcasting to authorized subscribers over WebSockets
diff --git a/apps/docs/docs/ref/self-hosting-realtime/introduction.mdx b/apps/docs/docs/ref/self-hosting-realtime/introduction.mdx
index 23b7d5ba41042..8b8c4eef68072 100644
--- a/apps/docs/docs/ref/self-hosting-realtime/introduction.mdx
+++ b/apps/docs/docs/ref/self-hosting-realtime/introduction.mdx
@@ -26,7 +26,7 @@ hideTitle: true
`Realtime RLS` server works by:
1. Polling PostgreSQL's replication functionality (using PostgreSQL's logical decoding and [wal2json](https://github.com/eulerto/wal2json) output plugin)
- 2. Passing database changes to a [Write Ahead Log Realtime Unified Security (WALRUS)](https://github.com/supabase/walrus) PostgresSQL function and receiving a list of authorized subscribers depending on Row Level Security (RLS) policies
+ 2. Passing database changes to a [Write Ahead Log Realtime Unified Security (WALRUS)](https://github.com/supabase/walrus) PostgreSQL function and receiving a list of authorized subscribers depending on Row Level Security (RLS) policies
3. Converting the changes into JSON
4. Broadcasting to authorized subscribers over WebSockets
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 975b236f8dbaa..a46b6a6dca3fc 100644
--- a/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap
+++ b/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap
@@ -6731,6 +6731,17 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
"isOptional": true
},
+ {
+ "name": "skipAutoInitialize",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If true, skips automatic initialization in constructor. Useful for SSR\\ncontexts where initialization timing must be controlled to prevent race\\nconditions with HTTP response generation."
+ }
+ },
{
"name": "storage",
"type": {
@@ -47681,6 +47692,17 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
"isOptional": true
},
+ {
+ "name": "skipAutoInitialize",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If true, skips automatic initialization in constructor. Useful for SSR\\ncontexts where initialization timing must be controlled to prevent race\\nconditions with HTTP response generation."
+ }
+ },
{
"name": "storage",
"type": {
diff --git a/apps/docs/instrumentation-client.ts b/apps/docs/instrumentation-client.ts
index 7d9f53573e297..c51465428fc7c 100644
--- a/apps/docs/instrumentation-client.ts
+++ b/apps/docs/instrumentation-client.ts
@@ -1,5 +1,5 @@
// This file configures the initialization of Sentry on the client.
-// The added config here will be used whenever a users loads a page in their browser.
+// The added config here will be used whenever a user loads a page in their browser.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from '@sentry/nextjs'
diff --git a/apps/docs/scripts/search/sources/lint-warnings-guide.ts b/apps/docs/scripts/search/sources/lint-warnings-guide.ts
index b329f0be819ea..f2c54ff38f5f7 100644
--- a/apps/docs/scripts/search/sources/lint-warnings-guide.ts
+++ b/apps/docs/scripts/search/sources/lint-warnings-guide.ts
@@ -1,6 +1,11 @@
+import { createAppAuth } from '@octokit/auth-app'
import { Octokit } from '@octokit/core'
+import crypto, { createHash } from 'node:crypto'
import { BaseLoader, BaseSource } from './base.js'
-import { createHash } from 'node:crypto'
+
+const appId = process.env.DOCS_GITHUB_APP_ID
+const installationId = process.env.DOCS_GITHUB_APP_INSTALLATION_ID
+const privateKey = process.env.DOCS_GITHUB_APP_PRIVATE_KEY
const getBasename = (path: string) => path.split('/').at(-1)!.replace(/\.md$/, '')
@@ -19,7 +24,18 @@ export class LintWarningsGuideLoader extends BaseLoader {
}
async load() {
- const octokit = new Octokit()
+ if (!appId || !installationId || !privateKey) {
+ throw new Error('Missing DOCS_GITHUB_APP_* environment variables')
+ }
+
+ const octokit = new Octokit({
+ authStrategy: createAppAuth,
+ auth: {
+ appId,
+ installationId,
+ privateKey: crypto.createPrivateKey(privateKey).export({ type: 'pkcs8', format: 'pem' }),
+ },
+ })
const response = await octokit.request('GET /repos/{owner}/{repo}/contents/{path}', {
owner: this.org,
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/combined.json b/apps/docs/spec/enrichments/tsdoc_v2/combined.json
index 33e4ecb0640e2..e91fd1cb7deda 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": 47,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/cors.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/cors.ts#L47"
}
],
"type": {
@@ -109,7 +109,7 @@
"fileName": "packages/core/supabase-js/src/cors.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/cors.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/cors.ts#L71"
}
],
"type": {
@@ -136,7 +136,7 @@
"fileName": "packages/core/supabase-js/src/cors.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/cors.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/cors.ts#L1"
}
]
},
@@ -442,14 +442,14 @@
]
},
{
- "id": 2227,
+ "id": 2228,
"name": "REALTIME_LISTEN_TYPES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2228,
+ "id": 2229,
"name": "BROADCAST",
"variant": "declaration",
"kind": 16,
@@ -467,7 +467,7 @@
}
},
{
- "id": 2230,
+ "id": 2231,
"name": "POSTGRES_CHANGES",
"variant": "declaration",
"kind": 16,
@@ -485,7 +485,7 @@
}
},
{
- "id": 2229,
+ "id": 2230,
"name": "PRESENCE",
"variant": "declaration",
"kind": 16,
@@ -503,7 +503,7 @@
}
},
{
- "id": 2231,
+ "id": 2232,
"name": "SYSTEM",
"variant": "declaration",
"kind": 16,
@@ -524,7 +524,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2228, 2230, 2229, 2231]
+ "children": [2229, 2231, 2230, 2232]
}
],
"sources": [
@@ -536,14 +536,14 @@
]
},
{
- "id": 2232,
+ "id": 2233,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2233,
+ "id": 2234,
"name": "ALL",
"variant": "declaration",
"kind": 16,
@@ -561,7 +561,7 @@
}
},
{
- "id": 2236,
+ "id": 2237,
"name": "DELETE",
"variant": "declaration",
"kind": 16,
@@ -579,7 +579,7 @@
}
},
{
- "id": 2234,
+ "id": 2235,
"name": "INSERT",
"variant": "declaration",
"kind": 16,
@@ -597,7 +597,7 @@
}
},
{
- "id": 2235,
+ "id": 2236,
"name": "UPDATE",
"variant": "declaration",
"kind": 16,
@@ -618,7 +618,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2233, 2236, 2234, 2235]
+ "children": [2234, 2237, 2235, 2236]
}
],
"sources": [
@@ -630,14 +630,14 @@
]
},
{
- "id": 2237,
+ "id": 2238,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2239,
+ "id": 2240,
"name": "JOIN",
"variant": "declaration",
"kind": 16,
@@ -655,7 +655,7 @@
}
},
{
- "id": 2240,
+ "id": 2241,
"name": "LEAVE",
"variant": "declaration",
"kind": 16,
@@ -673,7 +673,7 @@
}
},
{
- "id": 2238,
+ "id": 2239,
"name": "SYNC",
"variant": "declaration",
"kind": 16,
@@ -694,7 +694,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2239, 2240, 2238]
+ "children": [2240, 2241, 2239]
}
],
"sources": [
@@ -706,14 +706,14 @@
]
},
{
- "id": 2241,
+ "id": 2242,
"name": "REALTIME_SUBSCRIBE_STATES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2245,
+ "id": 2246,
"name": "CHANNEL_ERROR",
"variant": "declaration",
"kind": 16,
@@ -731,7 +731,7 @@
}
},
{
- "id": 2244,
+ "id": 2245,
"name": "CLOSED",
"variant": "declaration",
"kind": 16,
@@ -749,7 +749,7 @@
}
},
{
- "id": 2242,
+ "id": 2243,
"name": "SUBSCRIBED",
"variant": "declaration",
"kind": 16,
@@ -767,7 +767,7 @@
}
},
{
- "id": 2243,
+ "id": 2244,
"name": "TIMED_OUT",
"variant": "declaration",
"kind": 16,
@@ -788,7 +788,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2245, 2244, 2242, 2243]
+ "children": [2246, 2245, 2243, 2244]
}
],
"sources": [
@@ -800,7 +800,7 @@
]
},
{
- "id": 1517,
+ "id": 1518,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -826,7 +826,7 @@
},
"children": [
{
- "id": 1518,
+ "id": 1519,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -840,7 +840,7 @@
],
"signatures": [
{
- "id": 1519,
+ "id": 1520,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -854,7 +854,7 @@
],
"parameters": [
{
- "id": 1520,
+ "id": 1521,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -865,7 +865,7 @@
}
},
{
- "id": 1521,
+ "id": 1522,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -876,7 +876,7 @@
}
},
{
- "id": 1522,
+ "id": 1523,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -898,25 +898,25 @@
],
"type": {
"type": "reference",
- "target": 1517,
+ "target": 1518,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1509,
+ "target": 1510,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1508,
+ "target": 1509,
"name": "AuthError.constructor"
}
},
{
- "id": 1526,
+ "id": 1527,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -937,12 +937,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1516,
+ "target": 1517,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1524,
+ "id": 1525,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -999,7 +999,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1525,
+ "id": 1526,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1012,12 +1012,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1513,
+ "target": 1514,
"name": "AuthError.code"
}
},
{
- "id": 1523,
+ "id": 1524,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1043,7 +1043,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1515,
+ "target": 1516,
"name": "AuthError.status"
}
}
@@ -1051,11 +1051,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1518]
+ "children": [1519]
},
{
"title": "Properties",
- "children": [1526, 1524, 1523]
+ "children": [1527, 1525, 1524]
}
],
"sources": [
@@ -1068,14 +1068,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1507,
+ "id": 1508,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -1101,7 +1101,7 @@
},
"children": [
{
- "id": 1508,
+ "id": 1509,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1115,7 +1115,7 @@
],
"signatures": [
{
- "id": 1509,
+ "id": 1510,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -1129,7 +1129,7 @@
],
"parameters": [
{
- "id": 1510,
+ "id": 1511,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1140,7 +1140,7 @@
}
},
{
- "id": 1511,
+ "id": 1512,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -1153,7 +1153,7 @@
}
},
{
- "id": 1512,
+ "id": 1513,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -1168,7 +1168,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -1186,7 +1186,7 @@
}
},
{
- "id": 1516,
+ "id": 1517,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1206,7 +1206,7 @@
}
},
{
- "id": 1513,
+ "id": 1514,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1261,7 +1261,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1514,
+ "id": 1515,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1274,7 +1274,7 @@
}
},
{
- "id": 1515,
+ "id": 1516,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1312,11 +1312,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1508]
+ "children": [1509]
},
{
"title": "Properties",
- "children": [1516, 1513, 1515]
+ "children": [1517, 1514, 1516]
}
],
"sources": [
@@ -1340,23 +1340,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1517,
+ "target": 1518,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1527,
+ "target": 1528,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError"
}
]
},
{
- "id": 1574,
+ "id": 1575,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -1382,7 +1382,7 @@
},
"children": [
{
- "id": 1575,
+ "id": 1576,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1396,7 +1396,7 @@
],
"signatures": [
{
- "id": 1576,
+ "id": 1577,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -1410,7 +1410,7 @@
],
"parameters": [
{
- "id": 1577,
+ "id": 1578,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1421,7 +1421,7 @@
}
},
{
- "id": 1578,
+ "id": 1579,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -1438,14 +1438,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1579,
+ "id": 1580,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1581,
+ "id": 1582,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1463,7 +1463,7 @@
}
},
{
- "id": 1580,
+ "id": 1581,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1484,7 +1484,7 @@
"groups": [
{
"title": "Properties",
- "children": [1581, 1580]
+ "children": [1582, 1581]
}
],
"sources": [
@@ -1502,25 +1502,25 @@
],
"type": {
"type": "reference",
- "target": 1574,
+ "target": 1575,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1600,
+ "id": 1601,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1541,12 +1541,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1598,
+ "id": 1599,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1603,7 +1603,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1599,
+ "id": 1600,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1616,12 +1616,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1582,
+ "id": 1583,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1643,14 +1643,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1583,
+ "id": 1584,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1585,
+ "id": 1586,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1668,7 +1668,7 @@
}
},
{
- "id": 1584,
+ "id": 1585,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1689,7 +1689,7 @@
"groups": [
{
"title": "Properties",
- "children": [1585, 1584]
+ "children": [1586, 1585]
}
],
"sources": [
@@ -1705,7 +1705,7 @@
}
},
{
- "id": 1596,
+ "id": 1597,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1725,12 +1725,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1597,
+ "id": 1598,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1758,12 +1758,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
},
{
- "id": 1586,
+ "id": 1587,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -1777,7 +1777,7 @@
],
"signatures": [
{
- "id": 1587,
+ "id": 1588,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -1792,14 +1792,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1588,
+ "id": 1589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1592,
+ "id": 1593,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1821,14 +1821,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1593,
+ "id": 1594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1595,
+ "id": 1596,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1846,7 +1846,7 @@
}
},
{
- "id": 1594,
+ "id": 1595,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1867,7 +1867,7 @@
"groups": [
{
"title": "Properties",
- "children": [1595, 1594]
+ "children": [1596, 1595]
}
],
"sources": [
@@ -1883,7 +1883,7 @@
}
},
{
- "id": 1590,
+ "id": 1591,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -1901,7 +1901,7 @@
}
},
{
- "id": 1589,
+ "id": 1590,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1919,7 +1919,7 @@
}
},
{
- "id": 1591,
+ "id": 1592,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1940,7 +1940,7 @@
"groups": [
{
"title": "Properties",
- "children": [1592, 1590, 1589, 1591]
+ "children": [1593, 1591, 1590, 1592]
}
],
"sources": [
@@ -1959,15 +1959,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1575]
+ "children": [1576]
},
{
"title": "Properties",
- "children": [1600, 1598, 1582, 1596, 1597]
+ "children": [1601, 1599, 1583, 1597, 1598]
},
{
"title": "Methods",
- "children": [1586]
+ "children": [1587]
}
],
"sources": [
@@ -1980,14 +1980,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1565,
+ "id": 1566,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -2013,7 +2013,7 @@
},
"children": [
{
- "id": 1566,
+ "id": 1567,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2027,7 +2027,7 @@
],
"signatures": [
{
- "id": 1567,
+ "id": 1568,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -2041,7 +2041,7 @@
],
"parameters": [
{
- "id": 1568,
+ "id": 1569,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2054,25 +2054,25 @@
],
"type": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1573,
+ "id": 1574,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2093,12 +2093,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1571,
+ "id": 1572,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2155,7 +2155,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1572,
+ "id": 1573,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2168,12 +2168,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1569,
+ "id": 1570,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2193,12 +2193,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1570,
+ "id": 1571,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2226,7 +2226,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -2234,11 +2234,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1566]
+ "children": [1567]
},
{
"title": "Properties",
- "children": [1573, 1571, 1569, 1570]
+ "children": [1574, 1572, 1570, 1571]
}
],
"sources": [
@@ -2251,14 +2251,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1658,
+ "id": 1659,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -2284,7 +2284,7 @@
},
"children": [
{
- "id": 1659,
+ "id": 1660,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2298,7 +2298,7 @@
],
"signatures": [
{
- "id": 1660,
+ "id": 1661,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -2312,7 +2312,7 @@
],
"parameters": [
{
- "id": 1661,
+ "id": 1662,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2325,25 +2325,25 @@
],
"type": {
"type": "reference",
- "target": 1658,
+ "target": 1659,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1666,
+ "id": 1667,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2364,12 +2364,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1664,
+ "id": 1665,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2426,7 +2426,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1665,
+ "id": 1666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2439,12 +2439,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1662,
+ "id": 1663,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2464,12 +2464,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1663,
+ "id": 1664,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2497,7 +2497,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -2505,11 +2505,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1659]
+ "children": [1660]
},
{
"title": "Properties",
- "children": [1666, 1664, 1662, 1663]
+ "children": [1667, 1665, 1663, 1664]
}
],
"sources": [
@@ -2522,14 +2522,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1557,
+ "id": 1558,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -2555,7 +2555,7 @@
},
"children": [
{
- "id": 1558,
+ "id": 1559,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2569,7 +2569,7 @@
],
"signatures": [
{
- "id": 1559,
+ "id": 1560,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -2583,25 +2583,25 @@
],
"type": {
"type": "reference",
- "target": 1557,
+ "target": 1558,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1564,
+ "id": 1565,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2622,12 +2622,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1562,
+ "id": 1563,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2684,7 +2684,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1563,
+ "id": 1564,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2697,12 +2697,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1560,
+ "id": 1561,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2722,12 +2722,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1561,
+ "id": 1562,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2755,7 +2755,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -2763,11 +2763,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1558]
+ "children": [1559]
},
{
"title": "Properties",
- "children": [1564, 1562, 1560, 1561]
+ "children": [1565, 1563, 1561, 1562]
}
],
"sources": [
@@ -2780,14 +2780,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1628,
+ "id": 1629,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "declaration",
"kind": 128,
@@ -2813,7 +2813,7 @@
},
"children": [
{
- "id": 1629,
+ "id": 1630,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2827,7 +2827,7 @@
],
"signatures": [
{
- "id": 1630,
+ "id": 1631,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "signature",
"kind": 16384,
@@ -2841,25 +2841,25 @@
],
"type": {
"type": "reference",
- "target": 1628,
+ "target": 1629,
"name": "AuthPKCECodeVerifierMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1635,
+ "id": 1636,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2880,12 +2880,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1633,
+ "id": 1634,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2942,7 +2942,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1634,
+ "id": 1635,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2955,12 +2955,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1631,
+ "id": 1632,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2980,12 +2980,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1632,
+ "id": 1633,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3013,7 +3013,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -3021,11 +3021,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1629]
+ "children": [1630]
},
{
"title": "Properties",
- "children": [1635, 1633, 1631, 1632]
+ "children": [1636, 1634, 1632, 1633]
}
],
"sources": [
@@ -3038,14 +3038,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1601,
+ "id": 1602,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -3071,7 +3071,7 @@
},
"children": [
{
- "id": 1602,
+ "id": 1603,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3085,7 +3085,7 @@
],
"signatures": [
{
- "id": 1603,
+ "id": 1604,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -3099,7 +3099,7 @@
],
"parameters": [
{
- "id": 1604,
+ "id": 1605,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3110,7 +3110,7 @@
}
},
{
- "id": 1605,
+ "id": 1606,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -3127,14 +3127,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1606,
+ "id": 1607,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1608,
+ "id": 1609,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3152,7 +3152,7 @@
}
},
{
- "id": 1607,
+ "id": 1608,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3173,7 +3173,7 @@
"groups": [
{
"title": "Properties",
- "children": [1608, 1607]
+ "children": [1609, 1608]
}
],
"sources": [
@@ -3191,25 +3191,25 @@
],
"type": {
"type": "reference",
- "target": 1601,
+ "target": 1602,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1627,
+ "id": 1628,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3230,12 +3230,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1625,
+ "id": 1626,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3292,7 +3292,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1626,
+ "id": 1627,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3305,12 +3305,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1609,
+ "id": 1610,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -3332,14 +3332,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1610,
+ "id": 1611,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1612,
+ "id": 1613,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3357,7 +3357,7 @@
}
},
{
- "id": 1611,
+ "id": 1612,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3378,7 +3378,7 @@
"groups": [
{
"title": "Properties",
- "children": [1612, 1611]
+ "children": [1613, 1612]
}
],
"sources": [
@@ -3394,7 +3394,7 @@
}
},
{
- "id": 1623,
+ "id": 1624,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3414,12 +3414,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1624,
+ "id": 1625,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3447,12 +3447,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
},
{
- "id": 1613,
+ "id": 1614,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -3466,7 +3466,7 @@
],
"signatures": [
{
- "id": 1614,
+ "id": 1615,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -3481,14 +3481,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1615,
+ "id": 1616,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1619,
+ "id": 1620,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -3510,14 +3510,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1620,
+ "id": 1621,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1622,
+ "id": 1623,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3535,7 +3535,7 @@
}
},
{
- "id": 1621,
+ "id": 1622,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3556,7 +3556,7 @@
"groups": [
{
"title": "Properties",
- "children": [1622, 1621]
+ "children": [1623, 1622]
}
],
"sources": [
@@ -3572,7 +3572,7 @@
}
},
{
- "id": 1617,
+ "id": 1618,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -3590,7 +3590,7 @@
}
},
{
- "id": 1616,
+ "id": 1617,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3608,7 +3608,7 @@
}
},
{
- "id": 1618,
+ "id": 1619,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3629,7 +3629,7 @@
"groups": [
{
"title": "Properties",
- "children": [1619, 1617, 1616, 1618]
+ "children": [1620, 1618, 1617, 1619]
}
],
"sources": [
@@ -3648,15 +3648,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1602]
+ "children": [1603]
},
{
"title": "Properties",
- "children": [1627, 1625, 1609, 1623, 1624]
+ "children": [1628, 1626, 1610, 1624, 1625]
},
{
"title": "Methods",
- "children": [1613]
+ "children": [1614]
}
],
"sources": [
@@ -3669,14 +3669,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1636,
+ "id": 1637,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -3702,7 +3702,7 @@
},
"children": [
{
- "id": 1637,
+ "id": 1638,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3716,7 +3716,7 @@
],
"signatures": [
{
- "id": 1638,
+ "id": 1639,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -3730,7 +3730,7 @@
],
"parameters": [
{
- "id": 1639,
+ "id": 1640,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3741,7 +3741,7 @@
}
},
{
- "id": 1640,
+ "id": 1641,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3754,25 +3754,25 @@
],
"type": {
"type": "reference",
- "target": 1636,
+ "target": 1637,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1645,
+ "id": 1646,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3793,12 +3793,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1643,
+ "id": 1644,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3855,7 +3855,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1644,
+ "id": 1645,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3868,12 +3868,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1641,
+ "id": 1642,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3893,12 +3893,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1642,
+ "id": 1643,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3926,7 +3926,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -3934,11 +3934,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1637]
+ "children": [1638]
},
{
"title": "Properties",
- "children": [1645, 1643, 1641, 1642]
+ "children": [1646, 1644, 1642, 1643]
}
],
"sources": [
@@ -3951,14 +3951,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1549,
+ "id": 1550,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -3984,7 +3984,7 @@
},
"children": [
{
- "id": 1550,
+ "id": 1551,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3998,7 +3998,7 @@
],
"signatures": [
{
- "id": 1551,
+ "id": 1552,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -4012,25 +4012,25 @@
],
"type": {
"type": "reference",
- "target": 1549,
+ "target": 1550,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1556,
+ "id": 1557,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4051,12 +4051,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1554,
+ "id": 1555,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4113,7 +4113,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1555,
+ "id": 1556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4126,12 +4126,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1552,
+ "id": 1553,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4151,12 +4151,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1553,
+ "id": 1554,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4184,7 +4184,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -4192,11 +4192,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1550]
+ "children": [1551]
},
{
"title": "Properties",
- "children": [1556, 1554, 1552, 1553]
+ "children": [1557, 1555, 1553, 1554]
}
],
"sources": [
@@ -4209,14 +4209,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1527,
+ "id": 1528,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -4242,7 +4242,7 @@
},
"children": [
{
- "id": 1528,
+ "id": 1529,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4256,7 +4256,7 @@
],
"signatures": [
{
- "id": 1529,
+ "id": 1530,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -4270,7 +4270,7 @@
],
"parameters": [
{
- "id": 1530,
+ "id": 1531,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4281,7 +4281,7 @@
}
},
{
- "id": 1531,
+ "id": 1532,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -4294,25 +4294,25 @@
],
"type": {
"type": "reference",
- "target": 1527,
+ "target": 1528,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1509,
+ "target": 1510,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1508,
+ "target": 1509,
"name": "AuthError.constructor"
}
},
{
- "id": 1536,
+ "id": 1537,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4333,12 +4333,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1516,
+ "target": 1517,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1533,
+ "id": 1534,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4395,7 +4395,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1534,
+ "id": 1535,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4408,12 +4408,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1513,
+ "target": 1514,
"name": "AuthError.code"
}
},
{
- "id": 1532,
+ "id": 1533,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -4431,7 +4431,7 @@
}
},
{
- "id": 1535,
+ "id": 1536,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4468,7 +4468,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1515,
+ "target": 1516,
"name": "AuthError.status"
}
}
@@ -4476,11 +4476,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1528]
+ "children": [1529]
},
{
"title": "Properties",
- "children": [1536, 1533, 1532, 1535]
+ "children": [1537, 1534, 1533, 1536]
}
],
"sources": [
@@ -4493,14 +4493,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1646,
+ "id": 1647,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -4526,7 +4526,7 @@
},
"children": [
{
- "id": 1647,
+ "id": 1648,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4540,7 +4540,7 @@
],
"signatures": [
{
- "id": 1648,
+ "id": 1649,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -4554,7 +4554,7 @@
],
"parameters": [
{
- "id": 1649,
+ "id": 1650,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4565,7 +4565,7 @@
}
},
{
- "id": 1650,
+ "id": 1651,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4576,7 +4576,7 @@
}
},
{
- "id": 1651,
+ "id": 1652,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -4605,25 +4605,25 @@
],
"type": {
"type": "reference",
- "target": 1646,
+ "target": 1647,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1657,
+ "id": 1658,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4644,12 +4644,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1655,
+ "id": 1656,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4706,7 +4706,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1656,
+ "id": 1657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4719,12 +4719,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1653,
+ "id": 1654,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4744,12 +4744,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1652,
+ "id": 1653,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -4791,7 +4791,7 @@
}
},
{
- "id": 1654,
+ "id": 1655,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4819,7 +4819,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -4827,11 +4827,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1647]
+ "children": [1648]
},
{
"title": "Properties",
- "children": [1657, 1655, 1653, 1652, 1654]
+ "children": [1658, 1656, 1654, 1653, 1655]
}
],
"sources": [
@@ -4844,14 +4844,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1537,
+ "id": 1538,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -4877,7 +4877,7 @@
},
"children": [
{
- "id": 1538,
+ "id": 1539,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4891,7 +4891,7 @@
],
"signatures": [
{
- "id": 1539,
+ "id": 1540,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -4905,7 +4905,7 @@
],
"parameters": [
{
- "id": 1540,
+ "id": 1541,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4916,7 +4916,7 @@
}
},
{
- "id": 1541,
+ "id": 1542,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -4927,7 +4927,7 @@
}
},
{
- "id": 1542,
+ "id": 1543,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4938,7 +4938,7 @@
}
},
{
- "id": 1543,
+ "id": 1544,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -4960,25 +4960,25 @@
],
"type": {
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1509,
+ "target": 1510,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1508,
+ "target": 1509,
"name": "AuthError.constructor"
}
},
{
- "id": 1548,
+ "id": 1549,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4999,12 +4999,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1516,
+ "target": 1517,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1546,
+ "id": 1547,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -5061,7 +5061,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1547,
+ "id": 1548,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -5074,12 +5074,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1513,
+ "target": 1514,
"name": "AuthError.code"
}
},
{
- "id": 1544,
+ "id": 1545,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -5102,7 +5102,7 @@
}
},
{
- "id": 1545,
+ "id": 1546,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -5128,7 +5128,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1515,
+ "target": 1516,
"name": "AuthError.status"
}
}
@@ -5136,11 +5136,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1538]
+ "children": [1539]
},
{
"title": "Properties",
- "children": [1548, 1546, 1544, 1545]
+ "children": [1549, 1547, 1545, 1546]
}
],
"sources": [
@@ -5153,7 +5153,7 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -5161,47 +5161,47 @@
"extendedBy": [
{
"type": "reference",
- "target": 1549,
+ "target": 1550,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1557,
+ "target": 1558,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1574,
+ "target": 1575,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1601,
+ "target": 1602,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1628,
+ "target": 1629,
"name": "AuthPKCECodeVerifierMissingError"
},
{
"type": "reference",
- "target": 1636,
+ "target": 1637,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1646,
+ "target": 1647,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1658,
+ "target": 1659,
"name": "AuthInvalidJwtError"
}
]
@@ -6519,7 +6519,7 @@
],
"type": {
"type": "reference",
- "target": 1285,
+ "target": 1286,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -6547,7 +6547,7 @@
],
"type": {
"type": "reference",
- "target": 1411,
+ "target": 1412,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -6624,7 +6624,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 884,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -6639,7 +6639,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6752,7 +6752,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6807,7 +6807,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1094,
+ "target": 1095,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -6822,7 +6822,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1095,
+ "target": 1096,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -6906,7 +6906,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -7088,7 +7088,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -7177,7 +7177,7 @@
},
"type": {
"type": "reference",
- "target": 1306,
+ "target": 1307,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -7286,7 +7286,7 @@
},
{
"type": "reference",
- "target": 1299,
+ "target": 1300,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -7407,7 +7407,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7583,7 +7583,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7777,7 +7777,7 @@
},
"type": {
"type": "reference",
- "target": 884,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -7792,7 +7792,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -8447,7 +8447,7 @@
],
"type": {
"type": "reference",
- "target": 943,
+ "target": 944,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
@@ -8585,7 +8585,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1295,
+ "target": 1296,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -8858,7 +8858,7 @@
],
"type": {
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -8886,7 +8886,7 @@
],
"type": {
"type": "reference",
- "target": 1463,
+ "target": 1464,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -8976,7 +8976,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1298,
+ "target": 1299,
"name": "CallRefreshTokenResult",
"package": "@supabase/auth-js"
}
@@ -9024,7 +9024,7 @@
},
{
"type": "reference",
- "target": 897,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -9050,7 +9050,7 @@
],
"type": {
"type": "reference",
- "target": 1292,
+ "target": 1293,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -9171,7 +9171,7 @@
},
{
"type": "reference",
- "target": 1292,
+ "target": 1293,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -9318,7 +9318,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9387,7 +9387,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9579,7 +9579,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9698,7 +9698,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9749,7 +9749,7 @@
},
"type": {
"type": "reference",
- "target": 1310,
+ "target": 1311,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -9793,7 +9793,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9861,7 +9861,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 878,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -9930,7 +9930,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -9998,7 +9998,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 811,
+ "target": 812,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -10219,7 +10219,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -10275,7 +10275,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -10355,7 +10355,7 @@
],
"type": {
"type": "reference",
- "target": 1334,
+ "target": 1335,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
@@ -10375,7 +10375,7 @@
],
"type": {
"type": "reference",
- "target": 1319,
+ "target": 1320,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
@@ -10496,7 +10496,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -10824,7 +10824,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11021,7 +11021,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -11125,7 +11125,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 845,
+ "target": 846,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -11224,7 +11224,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11298,7 +11298,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1295,
+ "target": 1296,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -11400,7 +11400,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 944,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -11415,7 +11415,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 820,
+ "target": 821,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -11454,7 +11454,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 956,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -11469,7 +11469,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 811,
+ "target": 812,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -11657,7 +11657,7 @@
],
"type": {
"type": "reference",
- "target": 897,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11884,7 +11884,7 @@
],
"type": {
"type": "reference",
- "target": 897,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11969,7 +11969,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12086,7 +12086,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12141,7 +12141,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1040,
+ "target": 1041,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -12156,7 +12156,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 806,
+ "target": 807,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -12432,7 +12432,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12584,7 +12584,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12652,7 +12652,7 @@
},
"type": {
"type": "reference",
- "target": 907,
+ "target": 908,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -12667,7 +12667,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12722,7 +12722,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 956,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -12737,7 +12737,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 811,
+ "target": 812,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -12792,7 +12792,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 944,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -12807,7 +12807,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 820,
+ "target": 821,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -12878,7 +12878,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 926,
+ "target": 927,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -12893,7 +12893,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 806,
+ "target": 807,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -12948,7 +12948,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 921,
+ "target": 922,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -12963,7 +12963,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 815,
+ "target": 816,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -13018,7 +13018,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1054,
+ "target": 1055,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -13033,7 +13033,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 833,
+ "target": 834,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -13099,7 +13099,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1017,
+ "target": 1018,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -13336,7 +13336,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13452,7 +13452,7 @@
},
"type": {
"type": "reference",
- "target": 1310,
+ "target": 1311,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -13496,7 +13496,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13590,7 +13590,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 913,
+ "target": 914,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -13605,7 +13605,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -13790,7 +13790,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 845,
+ "target": 846,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -13915,7 +13915,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13989,7 +13989,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 878,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -14058,7 +14058,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -14113,7 +14113,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1018,
+ "target": 1019,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -14128,7 +14128,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -14586,7 +14586,7 @@
]
},
{
- "id": 1684,
+ "id": 1685,
"name": "RealtimeChannel",
"variant": "declaration",
"kind": 128,
@@ -14601,7 +14601,7 @@
},
"children": [
{
- "id": 1685,
+ "id": 1686,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -14615,7 +14615,7 @@
],
"signatures": [
{
- "id": 1686,
+ "id": 1687,
"name": "RealtimeChannel",
"variant": "signature",
"kind": 16384,
@@ -14648,7 +14648,7 @@
],
"parameters": [
{
- "id": 1687,
+ "id": 1688,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -14667,7 +14667,7 @@
}
},
{
- "id": 1688,
+ "id": 1689,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14681,7 +14681,7 @@
},
{
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -14689,14 +14689,14 @@
}
},
{
- "id": 1689,
+ "id": 1690,
"name": "socket",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14705,7 +14705,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14714,7 +14714,7 @@
]
},
{
- "id": 1693,
+ "id": 1694,
"name": "bindings",
"variant": "declaration",
"kind": 1024,
@@ -14729,7 +14729,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1694,
+ "id": 1695,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14743,7 +14743,7 @@
],
"indexSignatures": [
{
- "id": 1695,
+ "id": 1696,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14757,7 +14757,7 @@
],
"parameters": [
{
- "id": 1696,
+ "id": 1697,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14773,14 +14773,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 1697,
+ "id": 1698,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1703,
+ "id": 1704,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -14803,7 +14803,7 @@
}
},
{
- "id": 1699,
+ "id": 1700,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -14818,7 +14818,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1700,
+ "id": 1701,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14832,7 +14832,7 @@
],
"indexSignatures": [
{
- "id": 1701,
+ "id": 1702,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14846,7 +14846,7 @@
],
"parameters": [
{
- "id": 1702,
+ "id": 1703,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14867,7 +14867,7 @@
}
},
{
- "id": 1704,
+ "id": 1705,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -14887,7 +14887,7 @@
}
},
{
- "id": 1698,
+ "id": 1699,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -14908,7 +14908,7 @@
"groups": [
{
"title": "Properties",
- "children": [1703, 1699, 1704, 1698]
+ "children": [1704, 1700, 1705, 1699]
}
],
"sources": [
@@ -14927,7 +14927,7 @@
}
},
{
- "id": 1712,
+ "id": 1713,
"name": "broadcastEndpointURL",
"variant": "declaration",
"kind": 1024,
@@ -14945,7 +14945,7 @@
}
},
{
- "id": 1707,
+ "id": 1708,
"name": "joinedOnce",
"variant": "declaration",
"kind": 1024,
@@ -14963,7 +14963,7 @@
}
},
{
- "id": 1708,
+ "id": 1709,
"name": "joinPush",
"variant": "declaration",
"kind": 1024,
@@ -14987,7 +14987,7 @@
}
},
{
- "id": 1691,
+ "id": 1692,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -15001,13 +15001,13 @@
],
"type": {
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1711,
+ "id": 1712,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -15021,14 +15021,14 @@
],
"type": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1714,
+ "id": 1715,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -15046,7 +15046,7 @@
}
},
{
- "id": 1710,
+ "id": 1711,
"name": "pushBuffer",
"variant": "declaration",
"kind": 1024,
@@ -15073,7 +15073,7 @@
}
},
{
- "id": 1709,
+ "id": 1710,
"name": "rejoinTimer",
"variant": "declaration",
"kind": 1024,
@@ -15097,7 +15097,7 @@
}
},
{
- "id": 1692,
+ "id": 1693,
"name": "socket",
"variant": "declaration",
"kind": 1024,
@@ -15111,14 +15111,14 @@
],
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1706,
+ "id": 1707,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -15141,7 +15141,7 @@
}
},
{
- "id": 1713,
+ "id": 1714,
"name": "subTopic",
"variant": "declaration",
"kind": 1024,
@@ -15159,7 +15159,7 @@
}
},
{
- "id": 1705,
+ "id": 1706,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -15177,7 +15177,7 @@
}
},
{
- "id": 1690,
+ "id": 1691,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -15203,7 +15203,7 @@
}
},
{
- "id": 1952,
+ "id": 1953,
"name": "httpSend",
"variant": "declaration",
"kind": 2048,
@@ -15217,7 +15217,7 @@
],
"signatures": [
{
- "id": 1953,
+ "id": 1954,
"name": "httpSend",
"variant": "signature",
"kind": 4096,
@@ -15250,7 +15250,7 @@
],
"parameters": [
{
- "id": 1954,
+ "id": 1955,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -15269,7 +15269,7 @@
}
},
{
- "id": 1955,
+ "id": 1956,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -15288,7 +15288,7 @@
}
},
{
- "id": 1956,
+ "id": 1957,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -15306,14 +15306,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1957,
+ "id": 1958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1958,
+ "id": 1959,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -15336,7 +15336,7 @@
"groups": [
{
"title": "Properties",
- "children": [1958]
+ "children": [1959]
}
],
"sources": [
@@ -15363,14 +15363,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1959,
+ "id": 1960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1960,
+ "id": 1961,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -15391,7 +15391,7 @@
"groups": [
{
"title": "Properties",
- "children": [1960]
+ "children": [1961]
}
],
"sources": [
@@ -15406,14 +15406,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1961,
+ "id": 1962,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1964,
+ "id": 1965,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -15431,7 +15431,7 @@
}
},
{
- "id": 1963,
+ "id": 1964,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -15449,7 +15449,7 @@
}
},
{
- "id": 1962,
+ "id": 1963,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -15470,7 +15470,7 @@
"groups": [
{
"title": "Properties",
- "children": [1964, 1963, 1962]
+ "children": [1965, 1964, 1963]
}
],
"sources": [
@@ -15492,7 +15492,7 @@
]
},
{
- "id": 1746,
+ "id": 1747,
"name": "on",
"variant": "declaration",
"kind": 2048,
@@ -15576,7 +15576,7 @@
],
"signatures": [
{
- "id": 1747,
+ "id": 1748,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15598,7 +15598,7 @@
],
"parameters": [
{
- "id": 1748,
+ "id": 1749,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15609,7 +15609,7 @@
}
},
{
- "id": 1749,
+ "id": 1750,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15617,14 +15617,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1750,
+ "id": 1751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1751,
+ "id": 1752,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15645,7 +15645,7 @@
"groups": [
{
"title": "Properties",
- "children": [1751]
+ "children": [1752]
}
],
"sources": [
@@ -15659,7 +15659,7 @@
}
},
{
- "id": 1752,
+ "id": 1753,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15667,7 +15667,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1753,
+ "id": 1754,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15681,7 +15681,7 @@
],
"signatures": [
{
- "id": 1754,
+ "id": 1755,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15705,14 +15705,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1755,
+ "id": 1756,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15734,7 +15734,7 @@
],
"typeParameters": [
{
- "id": 1756,
+ "id": 1757,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15742,7 +15742,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1757,
+ "id": 1758,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15756,7 +15756,7 @@
],
"indexSignatures": [
{
- "id": 1758,
+ "id": 1759,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15770,7 +15770,7 @@
],
"parameters": [
{
- "id": 1759,
+ "id": 1760,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15793,7 +15793,7 @@
],
"parameters": [
{
- "id": 1760,
+ "id": 1761,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15804,7 +15804,7 @@
}
},
{
- "id": 1761,
+ "id": 1762,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15812,14 +15812,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1762,
+ "id": 1763,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1763,
+ "id": 1764,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15840,7 +15840,7 @@
"groups": [
{
"title": "Properties",
- "children": [1763]
+ "children": [1764]
}
],
"sources": [
@@ -15854,7 +15854,7 @@
}
},
{
- "id": 1764,
+ "id": 1765,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15862,7 +15862,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1765,
+ "id": 1766,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15876,7 +15876,7 @@
],
"signatures": [
{
- "id": 1766,
+ "id": 1767,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15890,18 +15890,18 @@
],
"parameters": [
{
- "id": 1767,
+ "id": 1768,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2197,
+ "target": 2198,
"typeArguments": [
{
"type": "reference",
- "target": 1756,
+ "target": 1757,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15924,14 +15924,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1768,
+ "id": 1769,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15953,7 +15953,7 @@
],
"typeParameters": [
{
- "id": 1769,
+ "id": 1770,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15961,7 +15961,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1770,
+ "id": 1771,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15975,7 +15975,7 @@
],
"indexSignatures": [
{
- "id": 1771,
+ "id": 1772,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15989,7 +15989,7 @@
],
"parameters": [
{
- "id": 1772,
+ "id": 1773,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16012,7 +16012,7 @@
],
"parameters": [
{
- "id": 1773,
+ "id": 1774,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16023,7 +16023,7 @@
}
},
{
- "id": 1774,
+ "id": 1775,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -16031,14 +16031,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1775,
+ "id": 1776,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1776,
+ "id": 1777,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16059,7 +16059,7 @@
"groups": [
{
"title": "Properties",
- "children": [1776]
+ "children": [1777]
}
],
"sources": [
@@ -16073,7 +16073,7 @@
}
},
{
- "id": 1777,
+ "id": 1778,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16081,7 +16081,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1778,
+ "id": 1779,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16095,7 +16095,7 @@
],
"signatures": [
{
- "id": 1779,
+ "id": 1780,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16109,18 +16109,18 @@
],
"parameters": [
{
- "id": 1780,
+ "id": 1781,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2207,
+ "target": 2208,
"typeArguments": [
{
"type": "reference",
- "target": 1769,
+ "target": 1770,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16143,14 +16143,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1781,
+ "id": 1782,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16172,7 +16172,7 @@
],
"typeParameters": [
{
- "id": 1782,
+ "id": 1783,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16180,7 +16180,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1783,
+ "id": 1784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16194,7 +16194,7 @@
],
"indexSignatures": [
{
- "id": 1784,
+ "id": 1785,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16208,7 +16208,7 @@
],
"parameters": [
{
- "id": 1785,
+ "id": 1786,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16231,7 +16231,7 @@
],
"parameters": [
{
- "id": 1786,
+ "id": 1787,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16242,14 +16242,14 @@
}
},
{
- "id": 1787,
+ "id": 1788,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16261,7 +16261,7 @@
}
},
{
- "id": 1788,
+ "id": 1789,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16269,7 +16269,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1789,
+ "id": 1790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16283,7 +16283,7 @@
],
"signatures": [
{
- "id": 1790,
+ "id": 1791,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16297,18 +16297,18 @@
],
"parameters": [
{
- "id": 1791,
+ "id": 1792,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2163,
+ "target": 2164,
"typeArguments": [
{
"type": "reference",
- "target": 1782,
+ "target": 1783,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16331,14 +16331,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1792,
+ "id": 1793,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16360,7 +16360,7 @@
],
"typeParameters": [
{
- "id": 1793,
+ "id": 1794,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16368,7 +16368,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1794,
+ "id": 1795,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16382,7 +16382,7 @@
],
"indexSignatures": [
{
- "id": 1795,
+ "id": 1796,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16396,7 +16396,7 @@
],
"parameters": [
{
- "id": 1796,
+ "id": 1797,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16419,7 +16419,7 @@
],
"parameters": [
{
- "id": 1797,
+ "id": 1798,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16430,14 +16430,14 @@
}
},
{
- "id": 1798,
+ "id": 1799,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16449,7 +16449,7 @@
}
},
{
- "id": 1799,
+ "id": 1800,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16457,7 +16457,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1800,
+ "id": 1801,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16471,7 +16471,7 @@
],
"signatures": [
{
- "id": 1801,
+ "id": 1802,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16485,18 +16485,18 @@
],
"parameters": [
{
- "id": 1802,
+ "id": 1803,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2168,
+ "target": 2169,
"typeArguments": [
{
"type": "reference",
- "target": 1793,
+ "target": 1794,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16519,14 +16519,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1803,
+ "id": 1804,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16548,7 +16548,7 @@
],
"typeParameters": [
{
- "id": 1804,
+ "id": 1805,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16556,7 +16556,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1805,
+ "id": 1806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16570,7 +16570,7 @@
],
"indexSignatures": [
{
- "id": 1806,
+ "id": 1807,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16584,7 +16584,7 @@
],
"parameters": [
{
- "id": 1807,
+ "id": 1808,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16607,7 +16607,7 @@
],
"parameters": [
{
- "id": 1808,
+ "id": 1809,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16618,14 +16618,14 @@
}
},
{
- "id": 1809,
+ "id": 1810,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16637,7 +16637,7 @@
}
},
{
- "id": 1810,
+ "id": 1811,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16645,7 +16645,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1811,
+ "id": 1812,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16659,7 +16659,7 @@
],
"signatures": [
{
- "id": 1812,
+ "id": 1813,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16673,18 +16673,18 @@
],
"parameters": [
{
- "id": 1813,
+ "id": 1814,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2178,
+ "target": 2179,
"typeArguments": [
{
"type": "reference",
- "target": 1804,
+ "target": 1805,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16707,14 +16707,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1814,
+ "id": 1815,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16736,7 +16736,7 @@
],
"typeParameters": [
{
- "id": 1815,
+ "id": 1816,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16744,7 +16744,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1816,
+ "id": 1817,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16758,7 +16758,7 @@
],
"indexSignatures": [
{
- "id": 1817,
+ "id": 1818,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16772,7 +16772,7 @@
],
"parameters": [
{
- "id": 1818,
+ "id": 1819,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16795,7 +16795,7 @@
],
"parameters": [
{
- "id": 1819,
+ "id": 1820,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16806,14 +16806,14 @@
}
},
{
- "id": 1820,
+ "id": 1821,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16825,7 +16825,7 @@
}
},
{
- "id": 1821,
+ "id": 1822,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16833,7 +16833,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1822,
+ "id": 1823,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16847,7 +16847,7 @@
],
"signatures": [
{
- "id": 1823,
+ "id": 1824,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16861,18 +16861,18 @@
],
"parameters": [
{
- "id": 1824,
+ "id": 1825,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2187,
+ "target": 2188,
"typeArguments": [
{
"type": "reference",
- "target": 1815,
+ "target": 1816,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16895,14 +16895,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1825,
+ "id": 1826,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16924,7 +16924,7 @@
],
"typeParameters": [
{
- "id": 1826,
+ "id": 1827,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16932,7 +16932,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1827,
+ "id": 1828,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16946,7 +16946,7 @@
],
"indexSignatures": [
{
- "id": 1828,
+ "id": 1829,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16960,7 +16960,7 @@
],
"parameters": [
{
- "id": 1829,
+ "id": 1830,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16983,7 +16983,7 @@
],
"parameters": [
{
- "id": 1830,
+ "id": 1831,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16994,14 +16994,14 @@
}
},
{
- "id": 1831,
+ "id": 1832,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "union",
@@ -17030,7 +17030,7 @@
}
},
{
- "id": 1832,
+ "id": 1833,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17038,7 +17038,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1833,
+ "id": 1834,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17052,7 +17052,7 @@
],
"signatures": [
{
- "id": 1834,
+ "id": 1835,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17066,18 +17066,18 @@
],
"parameters": [
{
- "id": 1835,
+ "id": 1836,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2163,
+ "target": 2164,
"typeArguments": [
{
"type": "reference",
- "target": 1826,
+ "target": 1827,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17100,14 +17100,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1836,
+ "id": 1837,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17129,7 +17129,7 @@
],
"parameters": [
{
- "id": 1837,
+ "id": 1838,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17148,7 +17148,7 @@
}
},
{
- "id": 1838,
+ "id": 1839,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17164,14 +17164,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1839,
+ "id": 1840,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1840,
+ "id": 1841,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17192,7 +17192,7 @@
"groups": [
{
"title": "Properties",
- "children": [1840]
+ "children": [1841]
}
],
"sources": [
@@ -17206,7 +17206,7 @@
}
},
{
- "id": 1841,
+ "id": 1842,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17222,7 +17222,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1842,
+ "id": 1843,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17236,7 +17236,7 @@
],
"signatures": [
{
- "id": 1843,
+ "id": 1844,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17250,7 +17250,7 @@
],
"parameters": [
{
- "id": 1844,
+ "id": 1845,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17258,14 +17258,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1845,
+ "id": 1846,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1847,
+ "id": 1848,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17283,7 +17283,7 @@
}
},
{
- "id": 1848,
+ "id": 1849,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -17300,14 +17300,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1849,
+ "id": 1850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1851,
+ "id": 1852,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17325,7 +17325,7 @@
}
},
{
- "id": 1850,
+ "id": 1851,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -17348,7 +17348,7 @@
"groups": [
{
"title": "Properties",
- "children": [1851, 1850]
+ "children": [1852, 1851]
}
],
"sources": [
@@ -17362,7 +17362,7 @@
}
},
{
- "id": 1846,
+ "id": 1847,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17383,7 +17383,7 @@
"groups": [
{
"title": "Properties",
- "children": [1847, 1848, 1846]
+ "children": [1848, 1849, 1847]
}
],
"sources": [
@@ -17395,7 +17395,7 @@
],
"indexSignatures": [
{
- "id": 1852,
+ "id": 1853,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17409,7 +17409,7 @@
],
"parameters": [
{
- "id": 1853,
+ "id": 1854,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17442,14 +17442,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1854,
+ "id": 1855,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17471,7 +17471,7 @@
],
"typeParameters": [
{
- "id": 1855,
+ "id": 1856,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17479,7 +17479,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1856,
+ "id": 1857,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17493,7 +17493,7 @@
],
"indexSignatures": [
{
- "id": 1857,
+ "id": 1858,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17507,7 +17507,7 @@
],
"parameters": [
{
- "id": 1858,
+ "id": 1859,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17530,7 +17530,7 @@
],
"parameters": [
{
- "id": 1859,
+ "id": 1860,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17541,7 +17541,7 @@
}
},
{
- "id": 1860,
+ "id": 1861,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17549,14 +17549,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1861,
+ "id": 1862,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1862,
+ "id": 1863,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17577,7 +17577,7 @@
"groups": [
{
"title": "Properties",
- "children": [1862]
+ "children": [1863]
}
],
"sources": [
@@ -17591,7 +17591,7 @@
}
},
{
- "id": 1863,
+ "id": 1864,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17599,7 +17599,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1864,
+ "id": 1865,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17613,7 +17613,7 @@
],
"signatures": [
{
- "id": 1865,
+ "id": 1866,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17627,7 +17627,7 @@
],
"parameters": [
{
- "id": 1866,
+ "id": 1867,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17635,14 +17635,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1867,
+ "id": 1868,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1869,
+ "id": 1870,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17660,7 +17660,7 @@
}
},
{
- "id": 1870,
+ "id": 1871,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -17677,14 +17677,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1871,
+ "id": 1872,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1873,
+ "id": 1874,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17702,7 +17702,7 @@
}
},
{
- "id": 1872,
+ "id": 1873,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -17725,7 +17725,7 @@
"groups": [
{
"title": "Properties",
- "children": [1873, 1872]
+ "children": [1874, 1873]
}
],
"sources": [
@@ -17739,7 +17739,7 @@
}
},
{
- "id": 1874,
+ "id": 1875,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17753,14 +17753,14 @@
],
"type": {
"type": "reference",
- "target": 1855,
+ "target": 1856,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 1868,
+ "id": 1869,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17781,7 +17781,7 @@
"groups": [
{
"title": "Properties",
- "children": [1869, 1870, 1874, 1868]
+ "children": [1870, 1871, 1875, 1869]
}
],
"sources": [
@@ -17807,14 +17807,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1875,
+ "id": 1876,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17836,7 +17836,7 @@
],
"typeParameters": [
{
- "id": 1876,
+ "id": 1877,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17864,7 +17864,7 @@
],
"parameters": [
{
- "id": 1877,
+ "id": 1878,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17875,7 +17875,7 @@
}
},
{
- "id": 1878,
+ "id": 1879,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17883,14 +17883,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1879,
+ "id": 1880,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1880,
+ "id": 1881,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17904,7 +17904,7 @@
],
"type": {
"type": "reference",
- "target": 2233,
+ "target": 2234,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
@@ -17914,7 +17914,7 @@
"groups": [
{
"title": "Properties",
- "children": [1880]
+ "children": [1881]
}
],
"sources": [
@@ -17928,7 +17928,7 @@
}
},
{
- "id": 1881,
+ "id": 1882,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17936,7 +17936,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1882,
+ "id": 1883,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17950,7 +17950,7 @@
],
"signatures": [
{
- "id": 1883,
+ "id": 1884,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17964,7 +17964,7 @@
],
"parameters": [
{
- "id": 1884,
+ "id": 1885,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17972,14 +17972,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1885,
+ "id": 1886,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1887,
+ "id": 1888,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17993,14 +17993,14 @@
],
"type": {
"type": "reference",
- "target": 2233,
+ "target": 2234,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
}
},
{
- "id": 1888,
+ "id": 1889,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18021,7 +18021,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1876,
+ "target": 1877,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18032,7 +18032,7 @@
}
},
{
- "id": 1886,
+ "id": 1887,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18053,7 +18053,7 @@
"groups": [
{
"title": "Properties",
- "children": [1887, 1888, 1886]
+ "children": [1888, 1889, 1887]
}
],
"sources": [
@@ -18079,14 +18079,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1889,
+ "id": 1890,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18108,7 +18108,7 @@
],
"typeParameters": [
{
- "id": 1890,
+ "id": 1891,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18116,7 +18116,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1891,
+ "id": 1892,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18130,7 +18130,7 @@
],
"indexSignatures": [
{
- "id": 1892,
+ "id": 1893,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18144,7 +18144,7 @@
],
"parameters": [
{
- "id": 1893,
+ "id": 1894,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18167,7 +18167,7 @@
],
"parameters": [
{
- "id": 1894,
+ "id": 1895,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18178,7 +18178,7 @@
}
},
{
- "id": 1895,
+ "id": 1896,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18186,14 +18186,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1896,
+ "id": 1897,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1897,
+ "id": 1898,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18207,7 +18207,7 @@
],
"type": {
"type": "reference",
- "target": 2234,
+ "target": 2235,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
@@ -18217,7 +18217,7 @@
"groups": [
{
"title": "Properties",
- "children": [1897]
+ "children": [1898]
}
],
"sources": [
@@ -18231,7 +18231,7 @@
}
},
{
- "id": 1898,
+ "id": 1899,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18239,7 +18239,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1899,
+ "id": 1900,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18253,7 +18253,7 @@
],
"signatures": [
{
- "id": 1900,
+ "id": 1901,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18267,7 +18267,7 @@
],
"parameters": [
{
- "id": 1901,
+ "id": 1902,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18275,14 +18275,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1902,
+ "id": 1903,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1904,
+ "id": 1905,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18296,14 +18296,14 @@
],
"type": {
"type": "reference",
- "target": 2234,
+ "target": 2235,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
}
},
{
- "id": 1905,
+ "id": 1906,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18324,7 +18324,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1890,
+ "target": 1891,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18335,7 +18335,7 @@
}
},
{
- "id": 1903,
+ "id": 1904,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18356,7 +18356,7 @@
"groups": [
{
"title": "Properties",
- "children": [1904, 1905, 1903]
+ "children": [1905, 1906, 1904]
}
],
"sources": [
@@ -18382,14 +18382,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1906,
+ "id": 1907,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18411,7 +18411,7 @@
],
"typeParameters": [
{
- "id": 1907,
+ "id": 1908,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18419,7 +18419,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1908,
+ "id": 1909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18433,7 +18433,7 @@
],
"indexSignatures": [
{
- "id": 1909,
+ "id": 1910,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18447,7 +18447,7 @@
],
"parameters": [
{
- "id": 1910,
+ "id": 1911,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18470,7 +18470,7 @@
],
"parameters": [
{
- "id": 1911,
+ "id": 1912,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18481,7 +18481,7 @@
}
},
{
- "id": 1912,
+ "id": 1913,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18489,14 +18489,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1913,
+ "id": 1914,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1914,
+ "id": 1915,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18510,7 +18510,7 @@
],
"type": {
"type": "reference",
- "target": 2235,
+ "target": 2236,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
@@ -18520,7 +18520,7 @@
"groups": [
{
"title": "Properties",
- "children": [1914]
+ "children": [1915]
}
],
"sources": [
@@ -18534,7 +18534,7 @@
}
},
{
- "id": 1915,
+ "id": 1916,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18542,7 +18542,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1916,
+ "id": 1917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18556,7 +18556,7 @@
],
"signatures": [
{
- "id": 1917,
+ "id": 1918,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18570,7 +18570,7 @@
],
"parameters": [
{
- "id": 1918,
+ "id": 1919,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18578,14 +18578,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1919,
+ "id": 1920,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1921,
+ "id": 1922,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18599,14 +18599,14 @@
],
"type": {
"type": "reference",
- "target": 2235,
+ "target": 2236,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
}
},
{
- "id": 1922,
+ "id": 1923,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18627,7 +18627,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1907,
+ "target": 1908,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18638,7 +18638,7 @@
}
},
{
- "id": 1920,
+ "id": 1921,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18659,7 +18659,7 @@
"groups": [
{
"title": "Properties",
- "children": [1921, 1922, 1920]
+ "children": [1922, 1923, 1921]
}
],
"sources": [
@@ -18685,14 +18685,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1923,
+ "id": 1924,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18714,7 +18714,7 @@
],
"typeParameters": [
{
- "id": 1924,
+ "id": 1925,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18722,7 +18722,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1925,
+ "id": 1926,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18736,7 +18736,7 @@
],
"indexSignatures": [
{
- "id": 1926,
+ "id": 1927,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18750,7 +18750,7 @@
],
"parameters": [
{
- "id": 1927,
+ "id": 1928,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18773,7 +18773,7 @@
],
"parameters": [
{
- "id": 1928,
+ "id": 1929,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18784,7 +18784,7 @@
}
},
{
- "id": 1929,
+ "id": 1930,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18792,14 +18792,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1930,
+ "id": 1931,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1931,
+ "id": 1932,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18813,7 +18813,7 @@
],
"type": {
"type": "reference",
- "target": 2236,
+ "target": 2237,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
@@ -18823,7 +18823,7 @@
"groups": [
{
"title": "Properties",
- "children": [1931]
+ "children": [1932]
}
],
"sources": [
@@ -18837,7 +18837,7 @@
}
},
{
- "id": 1932,
+ "id": 1933,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18845,7 +18845,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1933,
+ "id": 1934,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18859,7 +18859,7 @@
],
"signatures": [
{
- "id": 1934,
+ "id": 1935,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18873,7 +18873,7 @@
],
"parameters": [
{
- "id": 1935,
+ "id": 1936,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18881,14 +18881,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1936,
+ "id": 1937,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1938,
+ "id": 1939,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18902,14 +18902,14 @@
],
"type": {
"type": "reference",
- "target": 2236,
+ "target": 2237,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
}
},
{
- "id": 1939,
+ "id": 1940,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18930,7 +18930,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1924,
+ "target": 1925,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18941,7 +18941,7 @@
}
},
{
- "id": 1937,
+ "id": 1938,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18962,7 +18962,7 @@
"groups": [
{
"title": "Properties",
- "children": [1938, 1939, 1937]
+ "children": [1939, 1940, 1938]
}
],
"sources": [
@@ -18988,14 +18988,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1940,
+ "id": 1941,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -19017,7 +19017,7 @@
],
"typeParameters": [
{
- "id": 1941,
+ "id": 1942,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -19025,7 +19025,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1942,
+ "id": 1943,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19039,7 +19039,7 @@
],
"indexSignatures": [
{
- "id": 1943,
+ "id": 1944,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19053,7 +19053,7 @@
],
"parameters": [
{
- "id": 1944,
+ "id": 1945,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19076,7 +19076,7 @@
],
"parameters": [
{
- "id": 1945,
+ "id": 1946,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -19087,7 +19087,7 @@
}
},
{
- "id": 1946,
+ "id": 1947,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -19095,7 +19095,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1947,
+ "id": 1948,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19104,7 +19104,7 @@
}
},
{
- "id": 1948,
+ "id": 1949,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -19112,7 +19112,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1949,
+ "id": 1950,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19126,7 +19126,7 @@
],
"signatures": [
{
- "id": 1950,
+ "id": 1951,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19140,7 +19140,7 @@
],
"parameters": [
{
- "id": 1951,
+ "id": 1952,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -19163,7 +19163,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19172,7 +19172,7 @@
]
},
{
- "id": 1723,
+ "id": 1724,
"name": "presenceState",
"variant": "declaration",
"kind": 2048,
@@ -19186,7 +19186,7 @@
],
"signatures": [
{
- "id": 1724,
+ "id": 1725,
"name": "presenceState",
"variant": "signature",
"kind": 4096,
@@ -19208,7 +19208,7 @@
],
"typeParameters": [
{
- "id": 1725,
+ "id": 1726,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -19216,7 +19216,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1726,
+ "id": 1727,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19230,7 +19230,7 @@
],
"indexSignatures": [
{
- "id": 1727,
+ "id": 1728,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19244,7 +19244,7 @@
],
"parameters": [
{
- "id": 1728,
+ "id": 1729,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19266,7 +19266,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 1729,
+ "id": 1730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19277,11 +19277,11 @@
],
"type": {
"type": "reference",
- "target": 2217,
+ "target": 2218,
"typeArguments": [
{
"type": "reference",
- "target": 1725,
+ "target": 1726,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -19294,7 +19294,7 @@
]
},
{
- "id": 1965,
+ "id": 1966,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -19308,7 +19308,7 @@
],
"signatures": [
{
- "id": 1966,
+ "id": 1967,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -19330,7 +19330,7 @@
],
"parameters": [
{
- "id": 1967,
+ "id": 1968,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -19346,14 +19346,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1968,
+ "id": 1969,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1970,
+ "id": 1971,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -19379,7 +19379,7 @@
}
},
{
- "id": 1971,
+ "id": 1972,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -19407,7 +19407,7 @@
}
},
{
- "id": 1969,
+ "id": 1970,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -19449,7 +19449,7 @@
"groups": [
{
"title": "Properties",
- "children": [1970, 1971, 1969]
+ "children": [1971, 1972, 1970]
}
],
"sources": [
@@ -19461,7 +19461,7 @@
],
"indexSignatures": [
{
- "id": 1972,
+ "id": 1973,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19475,7 +19475,7 @@
],
"parameters": [
{
- "id": 1973,
+ "id": 1974,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19496,7 +19496,7 @@
}
},
{
- "id": 1974,
+ "id": 1975,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -19514,7 +19514,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1975,
+ "id": 1976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19528,7 +19528,7 @@
],
"indexSignatures": [
{
- "id": 1976,
+ "id": 1977,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19542,7 +19542,7 @@
],
"parameters": [
{
- "id": 1977,
+ "id": 1978,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19572,7 +19572,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2003,
+ "target": 2004,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19584,7 +19584,7 @@
]
},
{
- "id": 1715,
+ "id": 1716,
"name": "subscribe",
"variant": "declaration",
"kind": 2048,
@@ -19598,7 +19598,7 @@
],
"signatures": [
{
- "id": 1716,
+ "id": 1717,
"name": "subscribe",
"variant": "signature",
"kind": 4096,
@@ -19620,7 +19620,7 @@
],
"parameters": [
{
- "id": 1717,
+ "id": 1718,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -19630,7 +19630,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1718,
+ "id": 1719,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19644,7 +19644,7 @@
],
"signatures": [
{
- "id": 1719,
+ "id": 1720,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19658,20 +19658,20 @@
],
"parameters": [
{
- "id": 1720,
+ "id": 1721,
"name": "status",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2241,
+ "target": 2242,
"name": "REALTIME_SUBSCRIBE_STATES",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1721,
+ "id": 1722,
"name": "err",
"variant": "param",
"kind": 32768,
@@ -19699,7 +19699,7 @@
}
},
{
- "id": 1722,
+ "id": 1723,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -19714,7 +19714,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19723,7 +19723,7 @@
]
},
{
- "id": 1987,
+ "id": 1988,
"name": "teardown",
"variant": "declaration",
"kind": 2048,
@@ -19737,7 +19737,7 @@
],
"signatures": [
{
- "id": 1988,
+ "id": 1989,
"name": "teardown",
"variant": "signature",
"kind": 4096,
@@ -19765,7 +19765,7 @@
]
},
{
- "id": 1730,
+ "id": 1731,
"name": "track",
"variant": "declaration",
"kind": 2048,
@@ -19779,7 +19779,7 @@
],
"signatures": [
{
- "id": 1731,
+ "id": 1732,
"name": "track",
"variant": "signature",
"kind": 4096,
@@ -19809,7 +19809,7 @@
],
"parameters": [
{
- "id": 1732,
+ "id": 1733,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -19817,7 +19817,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1733,
+ "id": 1734,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19831,7 +19831,7 @@
],
"indexSignatures": [
{
- "id": 1734,
+ "id": 1735,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19845,7 +19845,7 @@
],
"parameters": [
{
- "id": 1735,
+ "id": 1736,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19866,7 +19866,7 @@
}
},
{
- "id": 1736,
+ "id": 1737,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -19876,7 +19876,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1737,
+ "id": 1738,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19890,7 +19890,7 @@
],
"indexSignatures": [
{
- "id": 1738,
+ "id": 1739,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19904,7 +19904,7 @@
],
"parameters": [
{
- "id": 1739,
+ "id": 1740,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19934,7 +19934,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2003,
+ "target": 2004,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19946,7 +19946,7 @@
]
},
{
- "id": 1984,
+ "id": 1985,
"name": "unsubscribe",
"variant": "declaration",
"kind": 2048,
@@ -19960,7 +19960,7 @@
],
"signatures": [
{
- "id": 1985,
+ "id": 1986,
"name": "unsubscribe",
"variant": "signature",
"kind": 4096,
@@ -19990,7 +19990,7 @@
],
"parameters": [
{
- "id": 1986,
+ "id": 1987,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -20035,7 +20035,7 @@
]
},
{
- "id": 1740,
+ "id": 1741,
"name": "untrack",
"variant": "declaration",
"kind": 2048,
@@ -20049,7 +20049,7 @@
],
"signatures": [
{
- "id": 1741,
+ "id": 1742,
"name": "untrack",
"variant": "signature",
"kind": 4096,
@@ -20071,7 +20071,7 @@
],
"parameters": [
{
- "id": 1742,
+ "id": 1743,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -20081,7 +20081,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1743,
+ "id": 1744,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20095,7 +20095,7 @@
],
"indexSignatures": [
{
- "id": 1744,
+ "id": 1745,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20109,7 +20109,7 @@
],
"parameters": [
{
- "id": 1745,
+ "id": 1746,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20139,7 +20139,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2003,
+ "target": 2004,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -20151,7 +20151,7 @@
]
},
{
- "id": 1978,
+ "id": 1979,
"name": "updateJoinPayload",
"variant": "declaration",
"kind": 2048,
@@ -20165,7 +20165,7 @@
],
"signatures": [
{
- "id": 1979,
+ "id": 1980,
"name": "updateJoinPayload",
"variant": "signature",
"kind": 4096,
@@ -20187,7 +20187,7 @@
],
"parameters": [
{
- "id": 1980,
+ "id": 1981,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -20195,7 +20195,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1981,
+ "id": 1982,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20209,7 +20209,7 @@
],
"indexSignatures": [
{
- "id": 1982,
+ "id": 1983,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20223,7 +20223,7 @@
],
"parameters": [
{
- "id": 1983,
+ "id": 1984,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20255,18 +20255,18 @@
"groups": [
{
"title": "Constructors",
- "children": [1685]
+ "children": [1686]
},
{
"title": "Properties",
"children": [
- 1693, 1712, 1707, 1708, 1691, 1711, 1714, 1710, 1709, 1692, 1706, 1713, 1705,
- 1690
+ 1694, 1713, 1708, 1709, 1692, 1712, 1715, 1711, 1710, 1693, 1707, 1714, 1706,
+ 1691
]
},
{
"title": "Methods",
- "children": [1952, 1746, 1723, 1965, 1715, 1987, 1730, 1984, 1740, 1978]
+ "children": [1953, 1747, 1724, 1966, 1716, 1988, 1731, 1985, 1741, 1979]
}
],
"sources": [
@@ -20278,14 +20278,14 @@
]
},
{
- "id": 2004,
+ "id": 2005,
"name": "RealtimeClient",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 2005,
+ "id": 2006,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -20299,7 +20299,7 @@
],
"signatures": [
{
- "id": 2006,
+ "id": 2007,
"name": "RealtimeClient",
"variant": "signature",
"kind": 16384,
@@ -20332,7 +20332,7 @@
],
"parameters": [
{
- "id": 2007,
+ "id": 2008,
"name": "endPoint",
"variant": "param",
"kind": 32768,
@@ -20351,7 +20351,7 @@
}
},
{
- "id": 2008,
+ "id": 2009,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -20360,7 +20360,7 @@
},
"type": {
"type": "reference",
- "target": 2118,
+ "target": 2119,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js",
"highlightedProperties": {
@@ -20462,7 +20462,7 @@
],
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -20471,7 +20471,7 @@
]
},
{
- "id": 2058,
+ "id": 2059,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -20493,7 +20493,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2059,
+ "id": 2060,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20507,7 +20507,7 @@
],
"signatures": [
{
- "id": 2060,
+ "id": 2061,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20551,7 +20551,7 @@
}
},
{
- "id": 2009,
+ "id": 2010,
"name": "accessTokenValue",
"variant": "declaration",
"kind": 1024,
@@ -20578,7 +20578,7 @@
}
},
{
- "id": 2010,
+ "id": 2011,
"name": "apiKey",
"variant": "declaration",
"kind": 1024,
@@ -20605,7 +20605,7 @@
}
},
{
- "id": 2012,
+ "id": 2013,
"name": "channels",
"variant": "declaration",
"kind": 1024,
@@ -20621,7 +20621,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -20629,7 +20629,7 @@
}
},
{
- "id": 2041,
+ "id": 2042,
"name": "conn",
"variant": "declaration",
"kind": 1024,
@@ -20650,7 +20650,7 @@
},
{
"type": "reference",
- "target": 2263,
+ "target": 2264,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -20658,7 +20658,7 @@
}
},
{
- "id": 2039,
+ "id": 2040,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -20681,7 +20681,7 @@
}
},
{
- "id": 2038,
+ "id": 2039,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -20704,7 +20704,7 @@
}
},
{
- "id": 2013,
+ "id": 2014,
"name": "endPoint",
"variant": "declaration",
"kind": 1024,
@@ -20722,7 +20722,7 @@
}
},
{
- "id": 2050,
+ "id": 2051,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -20737,7 +20737,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2051,
+ "id": 2052,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20756,7 +20756,7 @@
],
"signatures": [
{
- "id": 2052,
+ "id": 2053,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20778,7 +20778,7 @@
],
"parameters": [
{
- "id": 2053,
+ "id": 2054,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -20808,7 +20808,7 @@
}
},
{
- "id": 2054,
+ "id": 2055,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -20848,7 +20848,7 @@
}
},
{
- "id": 2055,
+ "id": 2056,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20870,7 +20870,7 @@
],
"parameters": [
{
- "id": 2056,
+ "id": 2057,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -20904,7 +20904,7 @@
}
},
{
- "id": 2057,
+ "id": 2058,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -20948,7 +20948,7 @@
}
},
{
- "id": 2015,
+ "id": 2016,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -20979,7 +20979,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2016,
+ "id": 2017,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20993,7 +20993,7 @@
],
"indexSignatures": [
{
- "id": 2017,
+ "id": 2018,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -21007,7 +21007,7 @@
],
"parameters": [
{
- "id": 2018,
+ "id": 2019,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -21028,7 +21028,7 @@
}
},
{
- "id": 2028,
+ "id": 2029,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -21043,7 +21043,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2029,
+ "id": 2030,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -21057,7 +21057,7 @@
],
"signatures": [
{
- "id": 2030,
+ "id": 2031,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -21071,7 +21071,7 @@
],
"parameters": [
{
- "id": 2031,
+ "id": 2032,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -21087,7 +21087,7 @@
}
},
{
- "id": 2032,
+ "id": 2033,
"name": "latency",
"variant": "param",
"kind": 32768,
@@ -21110,7 +21110,7 @@
}
},
{
- "id": 2025,
+ "id": 2026,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -21128,7 +21128,7 @@
}
},
{
- "id": 2026,
+ "id": 2027,
"name": "heartbeatTimer",
"variant": "declaration",
"kind": 1024,
@@ -21161,7 +21161,7 @@
}
},
{
- "id": 2014,
+ "id": 2015,
"name": "httpEndpoint",
"variant": "declaration",
"kind": 1024,
@@ -21179,7 +21179,7 @@
}
},
{
- "id": 2036,
+ "id": 2037,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -21202,7 +21202,7 @@
}
},
{
- "id": 2037,
+ "id": 2038,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -21227,7 +21227,7 @@
}
},
{
- "id": 2019,
+ "id": 2020,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -21244,7 +21244,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2020,
+ "id": 2021,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -21258,7 +21258,7 @@
],
"indexSignatures": [
{
- "id": 2021,
+ "id": 2022,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -21272,7 +21272,7 @@
],
"parameters": [
{
- "id": 2022,
+ "id": 2023,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -21293,7 +21293,7 @@
}
},
{
- "id": 2027,
+ "id": 2028,
"name": "pendingHeartbeatRef",
"variant": "declaration",
"kind": 1024,
@@ -21320,7 +21320,7 @@
}
},
{
- "id": 2040,
+ "id": 2041,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -21343,7 +21343,7 @@
}
},
{
- "id": 2034,
+ "id": 2035,
"name": "reconnectTimer",
"variant": "declaration",
"kind": 1024,
@@ -21376,7 +21376,7 @@
}
},
{
- "id": 2033,
+ "id": 2034,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -21394,7 +21394,7 @@
}
},
{
- "id": 2042,
+ "id": 2043,
"name": "sendBuffer",
"variant": "declaration",
"kind": 1024,
@@ -21420,7 +21420,7 @@
}
},
{
- "id": 2043,
+ "id": 2044,
"name": "serializer",
"variant": "declaration",
"kind": 1024,
@@ -21444,7 +21444,7 @@
}
},
{
- "id": 2044,
+ "id": 2045,
"name": "stateChangeCallbacks",
"variant": "declaration",
"kind": 1024,
@@ -21459,14 +21459,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2045,
+ "id": 2046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2047,
+ "id": 2048,
"name": "close",
"variant": "declaration",
"kind": 1024,
@@ -21492,7 +21492,7 @@
}
},
{
- "id": 2048,
+ "id": 2049,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -21518,7 +21518,7 @@
}
},
{
- "id": 2049,
+ "id": 2050,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -21544,7 +21544,7 @@
}
},
{
- "id": 2046,
+ "id": 2047,
"name": "open",
"variant": "declaration",
"kind": 1024,
@@ -21573,7 +21573,7 @@
"groups": [
{
"title": "Properties",
- "children": [2047, 2048, 2049, 2046]
+ "children": [2048, 2049, 2050, 2047]
}
],
"sources": [
@@ -21587,7 +21587,7 @@
}
},
{
- "id": 2023,
+ "id": 2024,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -21605,7 +21605,7 @@
}
},
{
- "id": 2024,
+ "id": 2025,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -21626,7 +21626,7 @@
},
{
"type": "reference",
- "target": 2313,
+ "target": 2314,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
@@ -21634,7 +21634,7 @@
}
},
{
- "id": 2035,
+ "id": 2036,
"name": "vsn",
"variant": "declaration",
"kind": 1024,
@@ -21652,7 +21652,7 @@
}
},
{
- "id": 2061,
+ "id": 2062,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -21672,7 +21672,7 @@
}
},
{
- "id": 2063,
+ "id": 2064,
"name": "workerRef",
"variant": "declaration",
"kind": 1024,
@@ -21697,7 +21697,7 @@
}
},
{
- "id": 2062,
+ "id": 2063,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -21717,7 +21717,7 @@
}
},
{
- "id": 2096,
+ "id": 2097,
"name": "channel",
"variant": "declaration",
"kind": 2048,
@@ -21731,7 +21731,7 @@
],
"signatures": [
{
- "id": 2097,
+ "id": 2098,
"name": "channel",
"variant": "signature",
"kind": 4096,
@@ -21746,7 +21746,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "RealtimeChannel",
- "target": 1684
+ "target": 1685
},
{
"kind": "text",
@@ -21771,7 +21771,7 @@
],
"parameters": [
{
- "id": 2098,
+ "id": 2099,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -21782,7 +21782,7 @@
}
},
{
- "id": 2099,
+ "id": 2100,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -21791,7 +21791,7 @@
},
"type": {
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -21799,7 +21799,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -21808,7 +21808,7 @@
]
},
{
- "id": 2068,
+ "id": 2069,
"name": "connect",
"variant": "declaration",
"kind": 2048,
@@ -21822,7 +21822,7 @@
],
"signatures": [
{
- "id": 2069,
+ "id": 2070,
"name": "connect",
"variant": "signature",
"kind": 4096,
@@ -21850,7 +21850,7 @@
]
},
{
- "id": 2088,
+ "id": 2089,
"name": "connectionState",
"variant": "declaration",
"kind": 2048,
@@ -21864,7 +21864,7 @@
],
"signatures": [
{
- "id": 2089,
+ "id": 2090,
"name": "connectionState",
"variant": "signature",
"kind": 4096,
@@ -21897,7 +21897,7 @@
]
},
{
- "id": 2072,
+ "id": 2073,
"name": "disconnect",
"variant": "declaration",
"kind": 2048,
@@ -21911,7 +21911,7 @@
],
"signatures": [
{
- "id": 2073,
+ "id": 2074,
"name": "disconnect",
"variant": "signature",
"kind": 4096,
@@ -21933,7 +21933,7 @@
],
"parameters": [
{
- "id": 2074,
+ "id": 2075,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -21954,7 +21954,7 @@
}
},
{
- "id": 2075,
+ "id": 2076,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -21983,7 +21983,7 @@
]
},
{
- "id": 2070,
+ "id": 2071,
"name": "endpointURL",
"variant": "declaration",
"kind": 2048,
@@ -21997,7 +21997,7 @@
],
"signatures": [
{
- "id": 2071,
+ "id": 2072,
"name": "endpointURL",
"variant": "signature",
"kind": 4096,
@@ -22036,7 +22036,7 @@
]
},
{
- "id": 2115,
+ "id": 2116,
"name": "flushSendBuffer",
"variant": "declaration",
"kind": 2048,
@@ -22050,7 +22050,7 @@
],
"signatures": [
{
- "id": 2116,
+ "id": 2117,
"name": "flushSendBuffer",
"variant": "signature",
"kind": 4096,
@@ -22078,7 +22078,7 @@
]
},
{
- "id": 2076,
+ "id": 2077,
"name": "getChannels",
"variant": "declaration",
"kind": 2048,
@@ -22092,7 +22092,7 @@
],
"signatures": [
{
- "id": 2077,
+ "id": 2078,
"name": "getChannels",
"variant": "signature",
"kind": 4096,
@@ -22116,7 +22116,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -22126,7 +22126,7 @@
]
},
{
- "id": 2090,
+ "id": 2091,
"name": "isConnected",
"variant": "declaration",
"kind": 2048,
@@ -22140,7 +22140,7 @@
],
"signatures": [
{
- "id": 2091,
+ "id": 2092,
"name": "isConnected",
"variant": "signature",
"kind": 4096,
@@ -22176,7 +22176,7 @@
]
},
{
- "id": 2092,
+ "id": 2093,
"name": "isConnecting",
"variant": "declaration",
"kind": 2048,
@@ -22190,7 +22190,7 @@
],
"signatures": [
{
- "id": 2093,
+ "id": 2094,
"name": "isConnecting",
"variant": "signature",
"kind": 4096,
@@ -22226,7 +22226,7 @@
]
},
{
- "id": 2094,
+ "id": 2095,
"name": "isDisconnecting",
"variant": "declaration",
"kind": 2048,
@@ -22240,7 +22240,7 @@
],
"signatures": [
{
- "id": 2095,
+ "id": 2096,
"name": "isDisconnecting",
"variant": "signature",
"kind": 4096,
@@ -22276,7 +22276,7 @@
]
},
{
- "id": 2083,
+ "id": 2084,
"name": "log",
"variant": "declaration",
"kind": 2048,
@@ -22290,7 +22290,7 @@
],
"signatures": [
{
- "id": 2084,
+ "id": 2085,
"name": "log",
"variant": "signature",
"kind": 4096,
@@ -22320,7 +22320,7 @@
],
"parameters": [
{
- "id": 2085,
+ "id": 2086,
"name": "kind",
"variant": "param",
"kind": 32768,
@@ -22331,7 +22331,7 @@
}
},
{
- "id": 2086,
+ "id": 2087,
"name": "msg",
"variant": "param",
"kind": 32768,
@@ -22342,7 +22342,7 @@
}
},
{
- "id": 2087,
+ "id": 2088,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -22363,7 +22363,7 @@
]
},
{
- "id": 2108,
+ "id": 2109,
"name": "onHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -22377,7 +22377,7 @@
],
"signatures": [
{
- "id": 2109,
+ "id": 2110,
"name": "onHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -22399,7 +22399,7 @@
],
"parameters": [
{
- "id": 2110,
+ "id": 2111,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -22407,7 +22407,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2111,
+ "id": 2112,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -22421,7 +22421,7 @@
],
"signatures": [
{
- "id": 2112,
+ "id": 2113,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -22435,7 +22435,7 @@
],
"parameters": [
{
- "id": 2113,
+ "id": 2114,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -22451,7 +22451,7 @@
}
},
{
- "id": 2114,
+ "id": 2115,
"name": "latency",
"variant": "param",
"kind": 32768,
@@ -22482,7 +22482,7 @@
]
},
{
- "id": 2100,
+ "id": 2101,
"name": "push",
"variant": "declaration",
"kind": 2048,
@@ -22496,7 +22496,7 @@
],
"signatures": [
{
- "id": 2101,
+ "id": 2102,
"name": "push",
"variant": "signature",
"kind": 4096,
@@ -22518,14 +22518,14 @@
],
"parameters": [
{
- "id": 2102,
+ "id": 2103,
"name": "data",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2149,
+ "target": 2150,
"name": "RealtimeMessage",
"package": "@supabase/realtime-js"
}
@@ -22539,7 +22539,7 @@
]
},
{
- "id": 2081,
+ "id": 2082,
"name": "removeAllChannels",
"variant": "declaration",
"kind": 2048,
@@ -22553,7 +22553,7 @@
],
"signatures": [
{
- "id": 2082,
+ "id": 2083,
"name": "removeAllChannels",
"variant": "signature",
"kind": 4096,
@@ -22584,7 +22584,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 2226,
+ "target": 2227,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -22597,7 +22597,7 @@
]
},
{
- "id": 2078,
+ "id": 2079,
"name": "removeChannel",
"variant": "declaration",
"kind": 2048,
@@ -22611,7 +22611,7 @@
],
"signatures": [
{
- "id": 2079,
+ "id": 2080,
"name": "removeChannel",
"variant": "signature",
"kind": 4096,
@@ -22633,7 +22633,7 @@
],
"parameters": [
{
- "id": 2080,
+ "id": 2081,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -22648,7 +22648,7 @@
},
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -22664,7 +22664,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2226,
+ "target": 2227,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -22676,7 +22676,7 @@
]
},
{
- "id": 2106,
+ "id": 2107,
"name": "sendHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -22690,7 +22690,7 @@
],
"signatures": [
{
- "id": 2107,
+ "id": 2108,
"name": "sendHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -22729,7 +22729,7 @@
]
},
{
- "id": 2103,
+ "id": 2104,
"name": "setAuth",
"variant": "declaration",
"kind": 2048,
@@ -22743,7 +22743,7 @@
],
"signatures": [
{
- "id": 2104,
+ "id": 2105,
"name": "setAuth",
"variant": "signature",
"kind": 4096,
@@ -22800,7 +22800,7 @@
],
"parameters": [
{
- "id": 2105,
+ "id": 2106,
"name": "token",
"variant": "param",
"kind": 32768,
@@ -22852,21 +22852,21 @@
"groups": [
{
"title": "Constructors",
- "children": [2005]
+ "children": [2006]
},
{
"title": "Properties",
"children": [
- 2058, 2009, 2010, 2012, 2041, 2039, 2038, 2013, 2050, 2015, 2028, 2025, 2026,
- 2014, 2036, 2037, 2019, 2027, 2040, 2034, 2033, 2042, 2043, 2044, 2023, 2024,
- 2035, 2061, 2063, 2062
+ 2059, 2010, 2011, 2013, 2042, 2040, 2039, 2014, 2051, 2016, 2029, 2026, 2027,
+ 2015, 2037, 2038, 2020, 2028, 2041, 2035, 2034, 2043, 2044, 2045, 2024, 2025,
+ 2036, 2062, 2064, 2063
]
},
{
"title": "Methods",
"children": [
- 2096, 2068, 2088, 2072, 2070, 2115, 2076, 2090, 2092, 2094, 2083, 2108, 2100,
- 2081, 2078, 2106, 2103
+ 2097, 2069, 2089, 2073, 2071, 2116, 2077, 2091, 2093, 2095, 2084, 2109, 2101,
+ 2082, 2079, 2107, 2104
]
}
],
@@ -22879,14 +22879,14 @@
]
},
{
- "id": 1667,
+ "id": 1668,
"name": "RealtimePresence",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1668,
+ "id": 1669,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -22900,7 +22900,7 @@
],
"signatures": [
{
- "id": 1669,
+ "id": 1670,
"name": "RealtimePresence",
"variant": "signature",
"kind": 16384,
@@ -22933,7 +22933,7 @@
],
"parameters": [
{
- "id": 1670,
+ "id": 1671,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -22948,14 +22948,14 @@
},
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1671,
+ "id": 1672,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -22991,7 +22991,7 @@
],
"type": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -23000,7 +23000,7 @@
]
},
{
- "id": 1677,
+ "id": 1678,
"name": "caller",
"variant": "declaration",
"kind": 1024,
@@ -23015,14 +23015,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1678,
+ "id": 1679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1679,
+ "id": 1680,
"name": "onJoin",
"variant": "declaration",
"kind": 1024,
@@ -23045,7 +23045,7 @@
}
},
{
- "id": 1680,
+ "id": 1681,
"name": "onLeave",
"variant": "declaration",
"kind": 1024,
@@ -23068,7 +23068,7 @@
}
},
{
- "id": 1681,
+ "id": 1682,
"name": "onSync",
"variant": "declaration",
"kind": 1024,
@@ -23083,7 +23083,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1682,
+ "id": 1683,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -23097,7 +23097,7 @@
],
"signatures": [
{
- "id": 1683,
+ "id": 1684,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -23122,7 +23122,7 @@
"groups": [
{
"title": "Properties",
- "children": [1679, 1680, 1681]
+ "children": [1680, 1681, 1682]
}
],
"sources": [
@@ -23136,7 +23136,7 @@
}
},
{
- "id": 1672,
+ "id": 1673,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -23150,14 +23150,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1676,
+ "id": 1677,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -23175,7 +23175,7 @@
}
},
{
- "id": 1675,
+ "id": 1676,
"name": "joinRef",
"variant": "declaration",
"kind": 1024,
@@ -23202,7 +23202,7 @@
}
},
{
- "id": 1674,
+ "id": 1675,
"name": "pendingDiffs",
"variant": "declaration",
"kind": 1024,
@@ -23228,7 +23228,7 @@
}
},
{
- "id": 1673,
+ "id": 1674,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -23242,7 +23242,7 @@
],
"type": {
"type": "reference",
- "target": 2217,
+ "target": 2218,
"name": "RealtimePresenceState",
"package": "@supabase/realtime-js"
}
@@ -23251,11 +23251,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1668]
+ "children": [1669]
},
{
"title": "Properties",
- "children": [1677, 1672, 1676, 1675, 1674, 1673]
+ "children": [1678, 1673, 1677, 1676, 1675, 1674]
}
],
"sources": [
@@ -23292,7 +23292,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"signatures": [
@@ -23326,7 +23326,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"typeParameters": [
@@ -23374,7 +23374,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -23394,7 +23394,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -23744,7 +23744,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -23764,7 +23764,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -23845,7 +23845,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -23868,7 +23868,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -23888,7 +23888,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -23906,7 +23906,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -23956,7 +23956,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -23976,7 +23976,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -24012,7 +24012,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -24032,7 +24032,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -24208,7 +24208,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -24224,7 +24224,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"signatures": [
@@ -24239,7 +24239,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -24290,7 +24290,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L73"
}
],
"type": {
@@ -24316,7 +24316,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 81,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L81"
}
],
"type": {
@@ -24343,7 +24343,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L87"
}
],
"type": {
@@ -24365,7 +24365,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 86,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L86"
}
],
"type": {
@@ -24594,7 +24594,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 83,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L83"
}
],
"type": {
@@ -24620,7 +24620,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 90,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L90"
}
],
"type": {
@@ -24654,12 +24654,12 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L74"
}
],
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24678,7 +24678,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L80"
}
],
"type": {
@@ -24704,7 +24704,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L84"
}
],
"type": {
@@ -24762,7 +24762,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L78"
}
],
"type": {
@@ -24788,7 +24788,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 85,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L85"
}
],
"type": {
@@ -24809,7 +24809,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 82,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L82"
}
],
"type": {
@@ -24843,7 +24843,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 114,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L114"
}
],
"type": {
@@ -24872,7 +24872,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 113,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L113"
}
],
"type": {
@@ -24891,7 +24891,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L197"
}
],
"getSignature": {
@@ -24913,7 +24913,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L197"
}
],
"type": {
@@ -24938,7 +24938,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L311"
}
],
"signatures": [
@@ -24961,7 +24961,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L311"
}
],
"parameters": [
@@ -25000,7 +25000,7 @@
},
"type": {
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
},
@@ -25009,7 +25009,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -25048,19 +25048,19 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 205,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L205"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L209"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 217,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L217"
}
],
"signatures": [
@@ -25075,7 +25075,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 205,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L205"
}
],
"typeParameters": [
@@ -25176,7 +25176,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L209"
}
],
"typeParameters": [
@@ -25279,7 +25279,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L318"
}
],
"signatures": [
@@ -25302,14 +25302,14 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L318"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -25329,7 +25329,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 335,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L335"
}
],
"signatures": [
@@ -25352,7 +25352,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 335,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L335"
}
],
"type": {
@@ -25400,7 +25400,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L328"
}
],
"signatures": [
@@ -25423,7 +25423,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L328"
}
],
"parameters": [
@@ -25443,7 +25443,7 @@
},
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -25492,7 +25492,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L264"
}
],
"signatures": [
@@ -25515,7 +25515,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L264"
}
],
"typeParameters": [
@@ -25741,7 +25741,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 278,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L278"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L278"
}
],
"type": {
@@ -25791,7 +25791,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 277,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L277"
}
],
"type": {
@@ -25836,7 +25836,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 276,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L276"
}
],
"type": {
@@ -25856,7 +25856,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 275,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L275"
}
]
}
@@ -25965,7 +25965,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L229"
}
],
"signatures": [
@@ -25988,7 +25988,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L229"
}
],
"typeParameters": [
@@ -26136,7 +26136,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 37,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L37"
}
],
"typeParameters": [
@@ -26216,7 +26216,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -26236,7 +26236,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -26706,7 +26706,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -26726,7 +26726,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -26807,7 +26807,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -26830,7 +26830,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -26850,7 +26850,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -26868,7 +26868,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -26908,7 +26908,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -26928,7 +26928,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -26964,7 +26964,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -26984,7 +26984,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -27007,7 +27007,7 @@
]
},
{
- "id": 2247,
+ "id": 2248,
"name": "WebSocketFactory",
"variant": "declaration",
"kind": 128,
@@ -27022,7 +27022,7 @@
},
"children": [
{
- "id": 2255,
+ "id": 2256,
"name": "createWebSocket",
"variant": "declaration",
"kind": 2048,
@@ -27038,7 +27038,7 @@
],
"signatures": [
{
- "id": 2256,
+ "id": 2257,
"name": "createWebSocket",
"variant": "signature",
"kind": 4096,
@@ -27071,7 +27071,7 @@
],
"parameters": [
{
- "id": 2257,
+ "id": 2258,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -27096,7 +27096,7 @@
}
},
{
- "id": 2258,
+ "id": 2259,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -27123,7 +27123,7 @@
],
"type": {
"type": "reference",
- "target": 2263,
+ "target": 2264,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -27131,7 +27131,7 @@
]
},
{
- "id": 2249,
+ "id": 2250,
"name": "getWebSocketConstructor",
"variant": "declaration",
"kind": 2048,
@@ -27147,7 +27147,7 @@
],
"signatures": [
{
- "id": 2250,
+ "id": 2251,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 4096,
@@ -27181,7 +27181,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2251,
+ "id": 2252,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -27195,7 +27195,7 @@
],
"signatures": [
{
- "id": 2252,
+ "id": 2253,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 16384,
@@ -27209,7 +27209,7 @@
],
"parameters": [
{
- "id": 2253,
+ "id": 2254,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -27234,7 +27234,7 @@
}
},
{
- "id": 2254,
+ "id": 2255,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -27276,7 +27276,7 @@
]
},
{
- "id": 2259,
+ "id": 2260,
"name": "isWebSocketSupported",
"variant": "declaration",
"kind": 2048,
@@ -27292,7 +27292,7 @@
],
"signatures": [
{
- "id": 2260,
+ "id": 2261,
"name": "isWebSocketSupported",
"variant": "signature",
"kind": 4096,
@@ -27334,7 +27334,7 @@
"groups": [
{
"title": "Methods",
- "children": [2255, 2249, 2259]
+ "children": [2256, 2250, 2260]
}
],
"sources": [
@@ -27346,14 +27346,14 @@
]
},
{
- "id": 884,
+ "id": 885,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 886,
+ "id": 887,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -27387,7 +27387,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 413,
+ "line": 421,
"character": 4
}
],
@@ -27397,7 +27397,7 @@
}
},
{
- "id": 889,
+ "id": 890,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -27415,7 +27415,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 436,
+ "line": 444,
"character": 4
}
],
@@ -27425,7 +27425,7 @@
}
},
{
- "id": 894,
+ "id": 895,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -27444,7 +27444,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 370,
+ "line": 378,
"character": 4
}
],
@@ -27459,7 +27459,7 @@
}
},
{
- "id": 887,
+ "id": 888,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -27477,7 +27477,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 419,
+ "line": 427,
"character": 4
}
],
@@ -27487,7 +27487,7 @@
}
},
{
- "id": 892,
+ "id": 893,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -27521,7 +27521,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 458,
+ "line": 466,
"character": 4
}
],
@@ -27531,7 +27531,7 @@
}
},
{
- "id": 893,
+ "id": 894,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -27550,7 +27550,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 384,
+ "line": 392,
"character": 4
}
],
@@ -27565,7 +27565,7 @@
}
},
{
- "id": 895,
+ "id": 896,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -27584,7 +27584,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 378,
+ "line": 386,
"character": 4
}
],
@@ -27599,7 +27599,7 @@
}
},
{
- "id": 891,
+ "id": 892,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -27625,7 +27625,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 452,
+ "line": 460,
"character": 4
}
],
@@ -27635,7 +27635,7 @@
}
},
{
- "id": 896,
+ "id": 897,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -27654,7 +27654,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 374,
+ "line": 382,
"character": 4
}
],
@@ -27669,7 +27669,7 @@
}
},
{
- "id": 888,
+ "id": 889,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -27687,7 +27687,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 425,
+ "line": 433,
"character": 4
}
],
@@ -27697,7 +27697,7 @@
}
},
{
- "id": 890,
+ "id": 891,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -27747,7 +27747,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 444,
+ "line": 452,
"character": 4
}
],
@@ -27757,7 +27757,7 @@
}
},
{
- "id": 885,
+ "id": 886,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -27791,7 +27791,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 404,
+ "line": 412,
"character": 4
}
],
@@ -27804,13 +27804,13 @@
"groups": [
{
"title": "Properties",
- "children": [886, 889, 894, 887, 892, 893, 895, 891, 896, 888, 890, 885]
+ "children": [887, 890, 895, 888, 893, 894, 896, 892, 897, 889, 891, 886]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 393,
+ "line": 401,
"character": 17
}
],
@@ -27824,7 +27824,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 878,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -27839,7 +27839,7 @@
]
},
{
- "id": 842,
+ "id": 843,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -27859,7 +27859,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1268
+ "target": 1269
},
{
"kind": "text",
@@ -27871,7 +27871,7 @@
},
"children": [
{
- "id": 843,
+ "id": 844,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -27887,19 +27887,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 271,
+ "line": 279,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 844,
+ "id": 845,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -27915,7 +27915,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 276,
+ "line": 284,
"character": 4
}
],
@@ -27928,19 +27928,19 @@
"groups": [
{
"title": "Properties",
- "children": [843, 844]
+ "children": [844, 845]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 269,
+ "line": 277,
"character": 17
}
]
},
{
- "id": 1463,
+ "id": 1464,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -27955,7 +27955,7 @@
},
"children": [
{
- "id": 1467,
+ "id": 1468,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -27963,13 +27963,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1563,
+ "line": 1571,
"character": 4
}
],
"signatures": [
{
- "id": 1468,
+ "id": 1469,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -27996,13 +27996,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1563,
+ "line": 1571,
"character": 4
}
],
"parameters": [
{
- "id": 1469,
+ "id": 1470,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -28021,7 +28021,7 @@
}
},
{
- "id": 1470,
+ "id": 1471,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -28039,14 +28039,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1471,
+ "id": 1472,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1472,
+ "id": 1473,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -28064,7 +28064,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1564,
+ "line": 1572,
"character": 8
}
],
@@ -28077,13 +28077,13 @@
"groups": [
{
"title": "Properties",
- "children": [1472]
+ "children": [1473]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1563,
+ "line": 1571,
"character": 60
}
]
@@ -28100,7 +28100,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1454,
+ "target": 1455,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -28112,7 +28112,7 @@
]
},
{
- "id": 1473,
+ "id": 1474,
"name": "denyAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -28120,13 +28120,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1578,
+ "line": 1586,
"character": 4
}
],
"signatures": [
{
- "id": 1474,
+ "id": 1475,
"name": "denyAuthorization",
"variant": "signature",
"kind": 4096,
@@ -28153,13 +28153,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1578,
+ "line": 1586,
"character": 4
}
],
"parameters": [
{
- "id": 1475,
+ "id": 1476,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -28178,7 +28178,7 @@
}
},
{
- "id": 1476,
+ "id": 1477,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -28196,14 +28196,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1477,
+ "id": 1478,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1478,
+ "id": 1479,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -28221,7 +28221,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1579,
+ "line": 1587,
"character": 8
}
],
@@ -28234,13 +28234,13 @@
"groups": [
{
"title": "Properties",
- "children": [1478]
+ "children": [1479]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1578,
+ "line": 1586,
"character": 57
}
]
@@ -28257,7 +28257,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1454,
+ "target": 1455,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -28269,7 +28269,7 @@
]
},
{
- "id": 1464,
+ "id": 1465,
"name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
@@ -28277,13 +28277,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1550,
+ "line": 1558,
"character": 4
}
],
"signatures": [
{
- "id": 1465,
+ "id": 1466,
"name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
@@ -28330,13 +28330,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1550,
+ "line": 1558,
"character": 4
}
],
"parameters": [
{
- "id": 1466,
+ "id": 1467,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -28364,7 +28364,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1453,
+ "target": 1454,
"name": "AuthOAuthAuthorizationDetailsResponse",
"package": "@supabase/auth-js"
}
@@ -28376,7 +28376,7 @@
]
},
{
- "id": 1479,
+ "id": 1480,
"name": "listGrants",
"variant": "declaration",
"kind": 2048,
@@ -28384,13 +28384,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1587,
+ "line": 1595,
"character": 4
}
],
"signatures": [
{
- "id": 1480,
+ "id": 1481,
"name": "listGrants",
"variant": "signature",
"kind": 4096,
@@ -28417,7 +28417,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1587,
+ "line": 1595,
"character": 4
}
],
@@ -28430,7 +28430,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1460,
+ "target": 1461,
"name": "AuthOAuthGrantsResponse",
"package": "@supabase/auth-js"
}
@@ -28442,7 +28442,7 @@
]
},
{
- "id": 1481,
+ "id": 1482,
"name": "revokeGrant",
"variant": "declaration",
"kind": 2048,
@@ -28450,13 +28450,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1599,
+ "line": 1607,
"character": 4
}
],
"signatures": [
{
- "id": 1482,
+ "id": 1483,
"name": "revokeGrant",
"variant": "signature",
"kind": 4096,
@@ -28483,13 +28483,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1599,
+ "line": 1607,
"character": 4
}
],
"parameters": [
{
- "id": 1483,
+ "id": 1484,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -28505,14 +28505,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1484,
+ "id": 1485,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1485,
+ "id": 1486,
"name": "clientId",
"variant": "declaration",
"kind": 1024,
@@ -28528,7 +28528,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1600,
+ "line": 1608,
"character": 8
}
],
@@ -28541,13 +28541,13 @@
"groups": [
{
"title": "Properties",
- "children": [1485]
+ "children": [1486]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1599,
+ "line": 1607,
"character": 25
}
]
@@ -28564,7 +28564,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1461,
+ "target": 1462,
"name": "AuthOAuthRevokeGrantResponse",
"package": "@supabase/auth-js"
}
@@ -28579,13 +28579,13 @@
"groups": [
{
"title": "Methods",
- "children": [1467, 1473, 1464, 1479, 1481]
+ "children": [1468, 1474, 1465, 1480, 1482]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1528,
+ "line": 1536,
"character": 17
}
]
@@ -28614,7 +28614,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 236,
+ "line": 244,
"character": 4
}
],
@@ -28642,7 +28642,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 248,
+ "line": 256,
"character": 4
}
],
@@ -28668,7 +28668,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 244,
+ "line": 252,
"character": 4
}
],
@@ -28696,7 +28696,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 232,
+ "line": 240,
"character": 4
}
],
@@ -28733,7 +28733,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 227,
+ "line": 235,
"character": 4
}
],
@@ -28768,7 +28768,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 240,
+ "line": 248,
"character": 4
}
],
@@ -28786,7 +28786,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 249,
+ "line": 257,
"character": 4
}
],
@@ -28812,7 +28812,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 253,
+ "line": 261,
"character": 4
}
],
@@ -28833,7 +28833,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 223,
+ "line": 231,
"character": 17
}
]
@@ -28856,7 +28856,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 349,
+ "line": 357,
"character": 4
}
],
@@ -28874,13 +28874,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 340,
+ "line": 348,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
@@ -28894,7 +28894,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 342,
+ "line": 350,
"character": 4
}
],
@@ -28914,7 +28914,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 364,
+ "line": 372,
"character": 4
}
],
@@ -28934,7 +28934,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 343,
+ "line": 351,
"character": 4
}
],
@@ -28954,7 +28954,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 353,
+ "line": 361,
"character": 4
}
],
@@ -28972,7 +28972,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 352,
+ "line": 360,
"character": 4
}
],
@@ -28992,7 +28992,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 363,
+ "line": 371,
"character": 4
}
],
@@ -29012,7 +29012,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 350,
+ "line": 358,
"character": 4
}
],
@@ -29032,7 +29032,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 345,
+ "line": 353,
"character": 4
}
],
@@ -29052,7 +29052,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 354,
+ "line": 362,
"character": 4
}
],
@@ -29072,7 +29072,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 362,
+ "line": 370,
"character": 4
}
],
@@ -29083,7 +29083,7 @@
"types": [
{
"type": "reference",
- "target": 858,
+ "target": 859,
"typeArguments": [
{
"type": "union",
@@ -29112,7 +29112,7 @@
},
{
"type": "reference",
- "target": 858,
+ "target": 859,
"typeArguments": [
{
"type": "union",
@@ -29152,7 +29152,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 339,
+ "line": 347,
"character": 4
}
],
@@ -29172,7 +29172,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 359,
+ "line": 367,
"character": 4
}
],
@@ -29180,7 +29180,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 845,
+ "target": 846,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -29197,7 +29197,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 348,
+ "line": 356,
"character": 4
}
],
@@ -29217,7 +29217,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 360,
+ "line": 368,
"character": 4
}
],
@@ -29237,7 +29237,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 361,
+ "line": 369,
"character": 4
}
],
@@ -29257,7 +29257,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 356,
+ "line": 364,
"character": 4
}
],
@@ -29277,7 +29277,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 346,
+ "line": 354,
"character": 4
}
],
@@ -29297,7 +29297,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 347,
+ "line": 355,
"character": 4
}
],
@@ -29317,7 +29317,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 351,
+ "line": 359,
"character": 4
}
],
@@ -29337,7 +29337,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 355,
+ "line": 363,
"character": 4
}
],
@@ -29357,7 +29357,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 344,
+ "line": 352,
"character": 4
}
],
@@ -29377,7 +29377,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 357,
+ "line": 365,
"character": 4
}
],
@@ -29397,7 +29397,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 358,
+ "line": 366,
"character": 4
}
],
@@ -29415,13 +29415,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 341,
+ "line": 349,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 874,
+ "target": 875,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -29439,20 +29439,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 338,
+ "line": 346,
"character": 17
}
]
},
{
- "id": 1091,
+ "id": 1092,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1092,
+ "id": 1093,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29486,7 +29486,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 757,
+ "line": 765,
"character": 4
}
],
@@ -29496,7 +29496,7 @@
}
},
{
- "id": 1093,
+ "id": 1094,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -29514,7 +29514,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 759,
+ "line": 767,
"character": 4
}
],
@@ -29527,19 +29527,19 @@
"groups": [
{
"title": "Properties",
- "children": [1092, 1093]
+ "children": [1093, 1094]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 751,
+ "line": 759,
"character": 17
}
]
},
{
- "id": 1285,
+ "id": 1286,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -29560,7 +29560,7 @@
},
"children": [
{
- "id": 1289,
+ "id": 1290,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -29568,13 +29568,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1096,
+ "line": 1104,
"character": 4
}
],
"signatures": [
{
- "id": 1290,
+ "id": 1291,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -29594,7 +29594,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1257
+ "target": 1258
}
]
},
@@ -29607,20 +29607,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1096,
+ "line": 1104,
"character": 4
}
],
"parameters": [
{
- "id": 1291,
+ "id": 1292,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1275,
+ "target": 1276,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -29635,7 +29635,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1272,
+ "target": 1273,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -29647,7 +29647,7 @@
]
},
{
- "id": 1286,
+ "id": 1287,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -29655,13 +29655,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1087,
+ "line": 1095,
"character": 4
}
],
"signatures": [
{
- "id": 1287,
+ "id": 1288,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -29677,20 +29677,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1087,
+ "line": 1095,
"character": 4
}
],
"parameters": [
{
- "id": 1288,
+ "id": 1289,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1282,
+ "target": 1283,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -29705,7 +29705,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1279,
+ "target": 1280,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -29720,19 +29720,19 @@
"groups": [
{
"title": "Methods",
- "children": [1289, 1286]
+ "children": [1290, 1287]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1082,
+ "line": 1090,
"character": 17
}
]
},
{
- "id": 1411,
+ "id": 1412,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -29747,7 +29747,7 @@
},
"children": [
{
- "id": 1415,
+ "id": 1416,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -29755,13 +29755,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1380,
+ "line": 1388,
"character": 4
}
],
"signatures": [
{
- "id": 1416,
+ "id": 1417,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -29785,20 +29785,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1380,
+ "line": 1388,
"character": 4
}
],
"parameters": [
{
- "id": 1417,
+ "id": 1418,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1383,
+ "target": 1384,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -29813,7 +29813,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -29825,7 +29825,7 @@
]
},
{
- "id": 1425,
+ "id": 1426,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -29833,13 +29833,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1401,
+ "line": 1409,
"character": 4
}
],
"signatures": [
{
- "id": 1426,
+ "id": 1427,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -29863,13 +29863,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1401,
+ "line": 1409,
"character": 4
}
],
"parameters": [
{
- "id": 1427,
+ "id": 1428,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -29890,14 +29890,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1428,
+ "id": 1429,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1429,
+ "id": 1430,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29905,7 +29905,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1402,
+ "line": 1410,
"character": 8
}
],
@@ -29915,7 +29915,7 @@
}
},
{
- "id": 1430,
+ "id": 1431,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29923,7 +29923,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1403,
+ "line": 1411,
"character": 8
}
],
@@ -29936,7 +29936,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -29947,13 +29947,13 @@
"groups": [
{
"title": "Properties",
- "children": [1429, 1430]
+ "children": [1430, 1431]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1401,
+ "line": 1409,
"character": 44
}
]
@@ -29967,7 +29967,7 @@
]
},
{
- "id": 1418,
+ "id": 1419,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -29975,13 +29975,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1387,
+ "line": 1395,
"character": 4
}
],
"signatures": [
{
- "id": 1419,
+ "id": 1420,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -30005,13 +30005,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1387,
+ "line": 1395,
"character": 4
}
],
"parameters": [
{
- "id": 1420,
+ "id": 1421,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -30031,7 +30031,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -30043,7 +30043,7 @@
]
},
{
- "id": 1412,
+ "id": 1413,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -30051,13 +30051,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1373,
+ "line": 1381,
"character": 4
}
],
"signatures": [
{
- "id": 1413,
+ "id": 1414,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -30081,13 +30081,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1373,
+ "line": 1381,
"character": 4
}
],
"parameters": [
{
- "id": 1414,
+ "id": 1415,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30096,7 +30096,7 @@
},
"type": {
"type": "reference",
- "target": 1306,
+ "target": 1307,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -30111,7 +30111,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1399,
+ "target": 1400,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -30123,7 +30123,7 @@
]
},
{
- "id": 1431,
+ "id": 1432,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -30131,13 +30131,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1411,
+ "line": 1419,
"character": 4
}
],
"signatures": [
{
- "id": 1432,
+ "id": 1433,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -30161,13 +30161,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1411,
+ "line": 1419,
"character": 4
}
],
"parameters": [
{
- "id": 1433,
+ "id": 1434,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -30187,7 +30187,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -30199,7 +30199,7 @@
]
},
{
- "id": 1421,
+ "id": 1422,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -30207,13 +30207,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1394,
+ "line": 1402,
"character": 4
}
],
"signatures": [
{
- "id": 1422,
+ "id": 1423,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -30237,13 +30237,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1394,
+ "line": 1402,
"character": 4
}
],
"parameters": [
{
- "id": 1423,
+ "id": 1424,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -30254,14 +30254,14 @@
}
},
{
- "id": 1424,
+ "id": 1425,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1391,
+ "target": 1392,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -30276,7 +30276,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -30291,19 +30291,19 @@
"groups": [
{
"title": "Methods",
- "children": [1415, 1425, 1418, 1412, 1431, 1421]
+ "children": [1416, 1426, 1419, 1413, 1432, 1422]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1366,
+ "line": 1374,
"character": 17
}
]
},
{
- "id": 1154,
+ "id": 1155,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -30318,7 +30318,7 @@
},
"children": [
{
- "id": 1271,
+ "id": 1272,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -30326,7 +30326,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1045,
+ "line": 1053,
"character": 4
}
],
@@ -30341,7 +30341,7 @@
}
},
{
- "id": 1175,
+ "id": 1176,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -30349,28 +30349,28 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 998,
+ "line": 1006,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 999,
+ "line": 1007,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1000,
+ "line": 1008,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1001,
+ "line": 1009,
"character": 4
}
],
"signatures": [
{
- "id": 1176,
+ "id": 1177,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -30386,13 +30386,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 998,
+ "line": 1006,
"character": 4
}
],
"parameters": [
{
- "id": 1177,
+ "id": 1178,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30400,14 +30400,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1178,
+ "id": 1179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1179,
+ "id": 1180,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -30423,7 +30423,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 836,
+ "line": 844,
"character": 4
}
],
@@ -30436,13 +30436,13 @@
"groups": [
{
"title": "Properties",
- "children": [1179]
+ "children": [1180]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30463,14 +30463,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1180,
+ "id": 1181,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1181,
+ "id": 1182,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30478,7 +30478,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 153,
+ "line": 161,
"character": 4
}
],
@@ -30488,7 +30488,7 @@
}
},
{
- "id": 1182,
+ "id": 1183,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30496,13 +30496,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 154,
+ "line": 162,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30511,13 +30511,13 @@
"groups": [
{
"title": "Properties",
- "children": [1181, 1182]
+ "children": [1182, 1183]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30526,14 +30526,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1183,
+ "id": 1184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1184,
+ "id": 1185,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30541,21 +30541,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 150,
+ "line": 158,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1185,
+ "id": 1186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1188,
+ "id": 1189,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -30571,7 +30571,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 898,
+ "line": 906,
"character": 4
}
],
@@ -30581,7 +30581,7 @@
}
},
{
- "id": 1186,
+ "id": 1187,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -30597,7 +30597,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 894,
+ "line": 902,
"character": 4
}
],
@@ -30607,7 +30607,7 @@
}
},
{
- "id": 1187,
+ "id": 1188,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30623,7 +30623,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 896,
+ "line": 904,
"character": 4
}
],
@@ -30636,13 +30636,13 @@
"groups": [
{
"title": "Properties",
- "children": [1188, 1186, 1187]
+ "children": [1189, 1187, 1188]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30650,7 +30650,7 @@
}
},
{
- "id": 1189,
+ "id": 1190,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30658,7 +30658,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 151,
+ "line": 159,
"character": 4
}
],
@@ -30671,13 +30671,13 @@
"groups": [
{
"title": "Properties",
- "children": [1184, 1189]
+ "children": [1185, 1190]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30691,7 +30691,7 @@
}
},
{
- "id": 1190,
+ "id": 1191,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -30699,13 +30699,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 999,
+ "line": 1007,
"character": 4
}
],
"parameters": [
{
- "id": 1191,
+ "id": 1192,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30713,14 +30713,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1192,
+ "id": 1193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1194,
+ "id": 1195,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -30736,7 +30736,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 843,
+ "line": 851,
"character": 4
}
],
@@ -30755,7 +30755,7 @@
}
},
{
- "id": 1193,
+ "id": 1194,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -30771,7 +30771,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 836,
+ "line": 844,
"character": 4
}
],
@@ -30784,13 +30784,13 @@
"groups": [
{
"title": "Properties",
- "children": [1194, 1193]
+ "children": [1195, 1194]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30811,14 +30811,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1195,
+ "id": 1196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1196,
+ "id": 1197,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30826,7 +30826,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 153,
+ "line": 161,
"character": 4
}
],
@@ -30836,7 +30836,7 @@
}
},
{
- "id": 1197,
+ "id": 1198,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30844,13 +30844,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 154,
+ "line": 162,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30859,13 +30859,13 @@
"groups": [
{
"title": "Properties",
- "children": [1196, 1197]
+ "children": [1197, 1198]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30874,14 +30874,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1198,
+ "id": 1199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1199,
+ "id": 1200,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30889,21 +30889,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 150,
+ "line": 158,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1200,
+ "id": 1201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1203,
+ "id": 1204,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -30919,7 +30919,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 898,
+ "line": 906,
"character": 4
}
],
@@ -30929,7 +30929,7 @@
}
},
{
- "id": 1201,
+ "id": 1202,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -30945,7 +30945,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 894,
+ "line": 902,
"character": 4
}
],
@@ -30955,7 +30955,7 @@
}
},
{
- "id": 1202,
+ "id": 1203,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30971,7 +30971,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 896,
+ "line": 904,
"character": 4
}
],
@@ -30984,13 +30984,13 @@
"groups": [
{
"title": "Properties",
- "children": [1203, 1201, 1202]
+ "children": [1204, 1202, 1203]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30998,7 +30998,7 @@
}
},
{
- "id": 1204,
+ "id": 1205,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31006,7 +31006,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 151,
+ "line": 159,
"character": 4
}
],
@@ -31019,13 +31019,13 @@
"groups": [
{
"title": "Properties",
- "children": [1199, 1204]
+ "children": [1200, 1205]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31039,7 +31039,7 @@
}
},
{
- "id": 1205,
+ "id": 1206,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -31047,13 +31047,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1000,
+ "line": 1008,
"character": 4
}
],
"parameters": [
{
- "id": 1206,
+ "id": 1207,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31061,14 +31061,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1207,
+ "id": 1208,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1208,
+ "id": 1209,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31084,7 +31084,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 836,
+ "line": 844,
"character": 4
}
],
@@ -31094,7 +31094,7 @@
}
},
{
- "id": 1209,
+ "id": 1210,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -31102,21 +31102,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 848,
+ "line": 856,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1210,
+ "id": 1211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1211,
+ "id": 1212,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -31132,7 +31132,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 850,
+ "line": 858,
"character": 8
}
],
@@ -31142,7 +31142,7 @@
}
},
{
- "id": 1212,
+ "id": 1213,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -31160,7 +31160,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 852,
+ "line": 860,
"character": 8
}
],
@@ -31176,13 +31176,13 @@
"groups": [
{
"title": "Properties",
- "children": [1211, 1212]
+ "children": [1212, 1213]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 848,
+ "line": 856,
"character": 14
}
]
@@ -31193,13 +31193,13 @@
"groups": [
{
"title": "Properties",
- "children": [1208, 1209]
+ "children": [1209, 1210]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31220,14 +31220,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1213,
+ "id": 1214,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1214,
+ "id": 1215,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -31235,7 +31235,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 153,
+ "line": 161,
"character": 4
}
],
@@ -31245,7 +31245,7 @@
}
},
{
- "id": 1215,
+ "id": 1216,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31253,13 +31253,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 154,
+ "line": 162,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -31268,13 +31268,13 @@
"groups": [
{
"title": "Properties",
- "children": [1214, 1215]
+ "children": [1215, 1216]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31283,14 +31283,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1216,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1217,
+ "id": 1218,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -31298,21 +31298,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 150,
+ "line": 158,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1218,
+ "id": 1219,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1221,
+ "id": 1222,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -31328,7 +31328,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 898,
+ "line": 906,
"character": 4
}
],
@@ -31338,7 +31338,7 @@
}
},
{
- "id": 1219,
+ "id": 1220,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -31354,7 +31354,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 894,
+ "line": 902,
"character": 4
}
],
@@ -31364,7 +31364,7 @@
}
},
{
- "id": 1220,
+ "id": 1221,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -31380,7 +31380,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 896,
+ "line": 904,
"character": 4
}
],
@@ -31390,7 +31390,7 @@
}
},
{
- "id": 1222,
+ "id": 1223,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -31398,7 +31398,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 905,
+ "line": 913,
"character": 4
}
],
@@ -31408,14 +31408,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1223,
+ "id": 1224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1225,
+ "id": 1226,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -31423,21 +31423,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 907,
+ "line": 915,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1226,
+ "id": 1227,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1227,
+ "id": 1228,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -31445,7 +31445,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 908,
+ "line": 916,
"character": 12
}
],
@@ -31463,13 +31463,13 @@
"groups": [
{
"title": "Properties",
- "children": [1227]
+ "children": [1228]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 907,
+ "line": 915,
"character": 28
}
]
@@ -31477,7 +31477,7 @@
}
},
{
- "id": 1224,
+ "id": 1225,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -31485,7 +31485,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 906,
+ "line": 914,
"character": 8
}
],
@@ -31498,13 +31498,13 @@
"groups": [
{
"title": "Properties",
- "children": [1225, 1224]
+ "children": [1226, 1225]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 905,
+ "line": 913,
"character": 14
}
]
@@ -31513,14 +31513,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1228,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1230,
+ "id": 1231,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -31528,21 +31528,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 912,
+ "line": 920,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1231,
+ "id": 1232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1232,
+ "id": 1233,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -31550,7 +31550,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 913,
+ "line": 921,
"character": 12
}
],
@@ -31568,13 +31568,13 @@
"groups": [
{
"title": "Properties",
- "children": [1232]
+ "children": [1233]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 912,
+ "line": 920,
"character": 28
}
]
@@ -31582,7 +31582,7 @@
}
},
{
- "id": 1229,
+ "id": 1230,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -31590,7 +31590,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 911,
+ "line": 919,
"character": 8
}
],
@@ -31603,13 +31603,13 @@
"groups": [
{
"title": "Properties",
- "children": [1230, 1229]
+ "children": [1231, 1230]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 910,
+ "line": 918,
"character": 8
}
]
@@ -31622,13 +31622,13 @@
"groups": [
{
"title": "Properties",
- "children": [1221, 1219, 1220, 1222]
+ "children": [1222, 1220, 1221, 1223]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31636,7 +31636,7 @@
}
},
{
- "id": 1233,
+ "id": 1234,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31644,7 +31644,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 151,
+ "line": 159,
"character": 4
}
],
@@ -31657,13 +31657,13 @@
"groups": [
{
"title": "Properties",
- "children": [1217, 1233]
+ "children": [1218, 1234]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31677,7 +31677,7 @@
}
},
{
- "id": 1234,
+ "id": 1235,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -31685,20 +31685,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1001,
+ "line": 1009,
"character": 4
}
],
"parameters": [
{
- "id": 1235,
+ "id": 1236,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1124,
+ "target": 1125,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -31713,7 +31713,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1143,
+ "target": 1144,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -31725,7 +31725,7 @@
]
},
{
- "id": 1260,
+ "id": 1261,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -31733,13 +31733,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1019,
+ "line": 1027,
"character": 4
}
],
"signatures": [
{
- "id": 1261,
+ "id": 1262,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -31755,13 +31755,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1019,
+ "line": 1027,
"character": 4
}
],
"parameters": [
{
- "id": 1262,
+ "id": 1263,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31769,14 +31769,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1263,
+ "id": 1264,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1265,
+ "id": 1266,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -31792,7 +31792,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 801,
+ "line": 809,
"character": 4
}
],
@@ -31802,7 +31802,7 @@
}
},
{
- "id": 1264,
+ "id": 1265,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31818,7 +31818,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -31831,13 +31831,13 @@
"groups": [
{
"title": "Properties",
- "children": [1265, 1264]
+ "children": [1266, 1265]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31854,7 +31854,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31866,7 +31866,7 @@
]
},
{
- "id": 1155,
+ "id": 1156,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -31874,28 +31874,28 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 990,
+ "line": 998,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 991,
+ "line": 999,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 992,
+ "line": 1000,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 993,
+ "line": 1001,
"character": 4
}
],
"signatures": [
{
- "id": 1156,
+ "id": 1157,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -31927,13 +31927,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 990,
+ "line": 998,
"character": 4
}
],
"parameters": [
{
- "id": 1157,
+ "id": 1158,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31941,14 +31941,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1158,
+ "id": 1159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1159,
+ "id": 1160,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -31964,7 +31964,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1144,
+ "line": 1152,
"character": 4
}
],
@@ -31974,7 +31974,7 @@
}
},
{
- "id": 1160,
+ "id": 1161,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -31992,7 +31992,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1146,
+ "line": 1154,
"character": 4
}
],
@@ -32002,7 +32002,7 @@
}
},
{
- "id": 1161,
+ "id": 1162,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -32020,7 +32020,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1150,
+ "line": 1158,
"character": 4
}
],
@@ -32033,13 +32033,13 @@
"groups": [
{
"title": "Properties",
- "children": [1159, 1160, 1161]
+ "children": [1160, 1161, 1162]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32056,7 +32056,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1316,
+ "target": 1317,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -32066,7 +32066,7 @@
}
},
{
- "id": 1162,
+ "id": 1163,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -32074,13 +32074,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 991,
+ "line": 999,
"character": 4
}
],
"parameters": [
{
- "id": 1163,
+ "id": 1164,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32088,14 +32088,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1164,
+ "id": 1165,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1165,
+ "id": 1166,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -32111,7 +32111,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1144,
+ "line": 1152,
"character": 4
}
],
@@ -32121,7 +32121,7 @@
}
},
{
- "id": 1166,
+ "id": 1167,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -32139,7 +32139,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1146,
+ "line": 1154,
"character": 4
}
],
@@ -32149,7 +32149,7 @@
}
},
{
- "id": 1167,
+ "id": 1168,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -32165,7 +32165,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1155,
+ "line": 1163,
"character": 4
}
],
@@ -32178,13 +32178,13 @@
"groups": [
{
"title": "Properties",
- "children": [1165, 1166, 1167]
+ "children": [1166, 1167, 1168]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32201,7 +32201,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1317,
+ "target": 1318,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -32211,7 +32211,7 @@
}
},
{
- "id": 1168,
+ "id": 1169,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -32219,13 +32219,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 992,
+ "line": 1000,
"character": 4
}
],
"parameters": [
{
- "id": 1169,
+ "id": 1170,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32233,14 +32233,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1170,
+ "id": 1171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1171,
+ "id": 1172,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -32256,7 +32256,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1144,
+ "line": 1152,
"character": 4
}
],
@@ -32266,7 +32266,7 @@
}
},
{
- "id": 1172,
+ "id": 1173,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -32284,7 +32284,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1146,
+ "line": 1154,
"character": 4
}
],
@@ -32297,13 +32297,13 @@
"groups": [
{
"title": "Properties",
- "children": [1171, 1172]
+ "children": [1172, 1173]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32320,7 +32320,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1318,
+ "target": 1319,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -32330,7 +32330,7 @@
}
},
{
- "id": 1173,
+ "id": 1174,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -32338,20 +32338,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 993,
+ "line": 1001,
"character": 4
}
],
"parameters": [
{
- "id": 1174,
+ "id": 1175,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1107,
+ "target": 1108,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -32366,7 +32366,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1134,
+ "target": 1135,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -32378,7 +32378,7 @@
]
},
{
- "id": 1268,
+ "id": 1269,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -32386,13 +32386,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1044,
+ "line": 1052,
"character": 4
}
],
"signatures": [
{
- "id": 1269,
+ "id": 1270,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -32432,13 +32432,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1044,
+ "line": 1052,
"character": 4
}
],
"parameters": [
{
- "id": 1270,
+ "id": 1271,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -32468,7 +32468,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1149,
+ "target": 1150,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -32480,7 +32480,7 @@
]
},
{
- "id": 1266,
+ "id": 1267,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -32488,13 +32488,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1028,
+ "line": 1036,
"character": 4
}
],
"signatures": [
{
- "id": 1267,
+ "id": 1268,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -32518,7 +32518,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1155
+ "target": 1156
},
{
"kind": "text",
@@ -32532,7 +32532,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1268
+ "target": 1269
},
{
"kind": "text",
@@ -32559,7 +32559,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1028,
+ "line": 1036,
"character": 4
}
],
@@ -32572,7 +32572,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1144,
+ "target": 1145,
"typeArguments": [
{
"type": "typeOperator",
@@ -32607,7 +32607,7 @@
]
},
{
- "id": 1257,
+ "id": 1258,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -32615,13 +32615,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1014,
+ "line": 1022,
"character": 4
}
],
"signatures": [
{
- "id": 1258,
+ "id": 1259,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -32653,20 +32653,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1014,
+ "line": 1022,
"character": 4
}
],
"parameters": [
{
- "id": 1259,
+ "id": 1260,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1108,
+ "target": 1109,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -32681,7 +32681,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1135,
+ "target": 1136,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -32693,7 +32693,7 @@
]
},
{
- "id": 1236,
+ "id": 1237,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -32701,28 +32701,28 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1006,
+ "line": 1014,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1007,
+ "line": 1015,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1008,
+ "line": 1016,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1009,
+ "line": 1017,
"character": 4
}
],
"signatures": [
{
- "id": 1237,
+ "id": 1238,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -32738,13 +32738,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1006,
+ "line": 1014,
"character": 4
}
],
"parameters": [
{
- "id": 1238,
+ "id": 1239,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32752,14 +32752,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1241,
+ "id": 1242,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -32775,7 +32775,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 797,
+ "line": 805,
"character": 4
}
],
@@ -32785,7 +32785,7 @@
}
},
{
- "id": 1242,
+ "id": 1243,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -32801,7 +32801,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 801,
+ "line": 809,
"character": 4
}
],
@@ -32811,7 +32811,7 @@
}
},
{
- "id": 1240,
+ "id": 1241,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -32827,7 +32827,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -32840,13 +32840,13 @@
"groups": [
{
"title": "Properties",
- "children": [1241, 1242, 1240]
+ "children": [1242, 1243, 1241]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32863,7 +32863,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -32873,7 +32873,7 @@
}
},
{
- "id": 1243,
+ "id": 1244,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -32881,13 +32881,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1007,
+ "line": 1015,
"character": 4
}
],
"parameters": [
{
- "id": 1244,
+ "id": 1245,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32895,14 +32895,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1245,
+ "id": 1246,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1247,
+ "id": 1248,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -32918,7 +32918,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 797,
+ "line": 805,
"character": 4
}
],
@@ -32928,7 +32928,7 @@
}
},
{
- "id": 1248,
+ "id": 1249,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -32944,7 +32944,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 801,
+ "line": 809,
"character": 4
}
],
@@ -32954,7 +32954,7 @@
}
},
{
- "id": 1246,
+ "id": 1247,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -32970,7 +32970,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -32983,13 +32983,13 @@
"groups": [
{
"title": "Properties",
- "children": [1247, 1248, 1246]
+ "children": [1248, 1249, 1247]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -33006,7 +33006,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -33016,7 +33016,7 @@
}
},
{
- "id": 1249,
+ "id": 1250,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -33024,13 +33024,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1008,
+ "line": 1016,
"character": 4
}
],
"parameters": [
{
- "id": 1250,
+ "id": 1251,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -33038,14 +33038,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1251,
+ "id": 1252,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1253,
+ "id": 1254,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -33061,7 +33061,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 797,
+ "line": 805,
"character": 4
}
],
@@ -33071,7 +33071,7 @@
}
},
{
- "id": 1252,
+ "id": 1253,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -33087,7 +33087,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -33097,7 +33097,7 @@
}
},
{
- "id": 1254,
+ "id": 1255,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -33105,7 +33105,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 824,
+ "line": 832,
"character": 4
}
],
@@ -33152,13 +33152,13 @@
"groups": [
{
"title": "Properties",
- "children": [1253, 1252, 1254]
+ "children": [1254, 1253, 1255]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -33175,7 +33175,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -33185,7 +33185,7 @@
}
},
{
- "id": 1255,
+ "id": 1256,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -33193,20 +33193,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1009,
+ "line": 1017,
"character": 4
}
],
"parameters": [
{
- "id": 1256,
+ "id": 1257,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1119,
+ "target": 1120,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -33221,7 +33221,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -33236,30 +33236,30 @@
"groups": [
{
"title": "Properties",
- "children": [1271]
+ "children": [1272]
},
{
"title": "Methods",
- "children": [1175, 1260, 1155, 1268, 1266, 1257, 1236]
+ "children": [1176, 1261, 1156, 1269, 1267, 1258, 1237]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 980,
+ "line": 988,
"character": 17
}
]
},
{
- "id": 1354,
+ "id": 1355,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1357,
+ "id": 1358,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -33269,7 +33269,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1246,
+ "line": 1254,
"character": 4
}
],
@@ -33279,7 +33279,7 @@
}
},
{
- "id": 1356,
+ "id": 1357,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -33287,7 +33287,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1245,
+ "line": 1253,
"character": 4
}
],
@@ -33300,7 +33300,7 @@
}
},
{
- "id": 1358,
+ "id": 1359,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -33310,7 +33310,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1247,
+ "line": 1255,
"character": 4
}
],
@@ -33320,7 +33320,7 @@
}
},
{
- "id": 1355,
+ "id": 1356,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -33328,7 +33328,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1244,
+ "line": 1252,
"character": 4
}
],
@@ -33354,19 +33354,19 @@
"groups": [
{
"title": "Properties",
- "children": [1357, 1356, 1358, 1355]
+ "children": [1358, 1357, 1359, 1356]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1243,
+ "line": 1251,
"character": 17
}
],
"indexSignatures": [
{
- "id": 1359,
+ "id": 1360,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -33374,13 +33374,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1248,
+ "line": 1256,
"character": 4
}
],
"parameters": [
{
- "id": 1360,
+ "id": 1361,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33399,7 +33399,7 @@
]
},
{
- "id": 1334,
+ "id": 1335,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -33425,7 +33425,7 @@
},
"children": [
{
- "id": 1350,
+ "id": 1351,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -33435,13 +33435,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1214,
+ "line": 1222,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1148,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -33452,7 +33452,7 @@
}
},
{
- "id": 1342,
+ "id": 1343,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -33470,7 +33470,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1239,
+ "line": 1247,
"character": 4
}
],
@@ -33488,7 +33488,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 842,
+ "target": 843,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
@@ -33497,7 +33497,7 @@
}
},
{
- "id": 1340,
+ "id": 1341,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -33507,19 +33507,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1231,
+ "line": 1239,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1346,
+ "id": 1347,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -33529,7 +33529,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1210,
+ "line": 1218,
"character": 4
}
],
@@ -33556,7 +33556,7 @@
}
},
{
- "id": 1335,
+ "id": 1336,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -33566,7 +33566,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1226,
+ "line": 1234,
"character": 4
}
],
@@ -33576,7 +33576,7 @@
}
},
{
- "id": 1347,
+ "id": 1348,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -33586,7 +33586,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1211,
+ "line": 1219,
"character": 4
}
],
@@ -33601,7 +33601,7 @@
}
},
{
- "id": 1348,
+ "id": 1349,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -33611,7 +33611,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1212,
+ "line": 1220,
"character": 4
}
],
@@ -33626,7 +33626,7 @@
}
},
{
- "id": 1337,
+ "id": 1338,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -33636,7 +33636,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1228,
+ "line": 1236,
"character": 4
}
],
@@ -33646,7 +33646,7 @@
}
},
{
- "id": 1344,
+ "id": 1345,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -33656,7 +33656,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1208,
+ "line": 1216,
"character": 4
}
],
@@ -33671,7 +33671,7 @@
}
},
{
- "id": 1338,
+ "id": 1339,
"name": "jti",
"variant": "declaration",
"kind": 1024,
@@ -33681,7 +33681,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1229,
+ "line": 1237,
"character": 4
}
],
@@ -33691,7 +33691,7 @@
}
},
{
- "id": 1339,
+ "id": 1340,
"name": "nbf",
"variant": "declaration",
"kind": 1024,
@@ -33701,7 +33701,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1230,
+ "line": 1238,
"character": 4
}
],
@@ -33711,7 +33711,7 @@
}
},
{
- "id": 1336,
+ "id": 1337,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -33721,7 +33721,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1227,
+ "line": 1235,
"character": 4
}
],
@@ -33731,7 +33731,7 @@
}
},
{
- "id": 1343,
+ "id": 1344,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -33741,7 +33741,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1240,
+ "line": 1248,
"character": 4
}
],
@@ -33751,7 +33751,7 @@
}
},
{
- "id": 1349,
+ "id": 1350,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -33761,7 +33761,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1213,
+ "line": 1221,
"character": 4
}
],
@@ -33776,7 +33776,7 @@
}
},
{
- "id": 1351,
+ "id": 1352,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -33786,7 +33786,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1215,
+ "line": 1223,
"character": 4
}
],
@@ -33801,7 +33801,7 @@
}
},
{
- "id": 1345,
+ "id": 1346,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -33811,7 +33811,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1209,
+ "line": 1217,
"character": 4
}
],
@@ -33826,7 +33826,7 @@
}
},
{
- "id": 1341,
+ "id": 1342,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -33836,13 +33836,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1232,
+ "line": 1240,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 874,
+ "target": 875,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -33852,21 +33852,21 @@
{
"title": "Properties",
"children": [
- 1350, 1342, 1340, 1346, 1335, 1347, 1348, 1337, 1344, 1338, 1339, 1336, 1343,
- 1349, 1351, 1345, 1341
+ 1351, 1343, 1341, 1347, 1336, 1348, 1349, 1338, 1345, 1339, 1340, 1337, 1344,
+ 1350, 1352, 1346, 1342
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1225,
+ "line": 1233,
"character": 17
}
],
"indexSignatures": [
{
- "id": 1352,
+ "id": 1353,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -33874,13 +33874,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1241,
+ "line": 1249,
"character": 4
}
],
"parameters": [
{
- "id": 1353,
+ "id": 1354,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33900,21 +33900,21 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1324,
+ "target": 1325,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 897,
+ "id": 898,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 899,
+ "id": 900,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -33930,14 +33930,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 470,
+ "line": 478,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 900,
+ "id": 901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -33945,13 +33945,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 470,
+ "line": 478,
"character": 14
}
],
"signatures": [
{
- "id": 901,
+ "id": 902,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -33959,13 +33959,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 470,
+ "line": 478,
"character": 14
}
],
"parameters": [
{
- "id": 902,
+ "id": 903,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -33978,7 +33978,7 @@
}
},
{
- "id": 903,
+ "id": 904,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -34010,7 +34010,7 @@
}
},
{
- "id": 898,
+ "id": 899,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -34026,7 +34026,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 466,
+ "line": 474,
"character": 4
}
],
@@ -34045,7 +34045,7 @@
}
},
{
- "id": 904,
+ "id": 905,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -34061,14 +34061,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 474,
+ "line": 482,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 905,
+ "id": 906,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34076,13 +34076,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 474,
+ "line": 482,
"character": 17
}
],
"signatures": [
{
- "id": 906,
+ "id": 907,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34090,7 +34090,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 474,
+ "line": 482,
"character": 17
}
],
@@ -34107,26 +34107,26 @@
"groups": [
{
"title": "Properties",
- "children": [899, 898, 904]
+ "children": [900, 899, 905]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 460,
+ "line": 468,
"character": 17
}
]
},
{
- "id": 869,
+ "id": 870,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 870,
+ "id": 871,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -34144,7 +34144,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 328,
+ "line": 336,
"character": 4
}
],
@@ -34154,7 +34154,7 @@
}
},
{
- "id": 871,
+ "id": 872,
"name": "providers",
"variant": "declaration",
"kind": 1024,
@@ -34172,7 +34172,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 332,
+ "line": 340,
"character": 4
}
],
@@ -34188,19 +34188,19 @@
"groups": [
{
"title": "Properties",
- "children": [870, 871]
+ "children": [871, 872]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 324,
+ "line": 332,
"character": 17
}
],
"indexSignatures": [
{
- "id": 872,
+ "id": 873,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -34208,13 +34208,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 333,
+ "line": 341,
"character": 4
}
],
"parameters": [
{
- "id": 873,
+ "id": 874,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -34233,14 +34233,14 @@
]
},
{
- "id": 878,
+ "id": 879,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 883,
+ "id": 884,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -34274,7 +34274,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 391,
+ "line": 399,
"character": 4
}
],
@@ -34284,7 +34284,7 @@
}
},
{
- "id": 879,
+ "id": 880,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -34302,7 +34302,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 370,
+ "line": 378,
"character": 4
}
],
@@ -34312,7 +34312,7 @@
}
},
{
- "id": 882,
+ "id": 883,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -34330,7 +34330,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 384,
+ "line": 392,
"character": 4
}
],
@@ -34340,7 +34340,7 @@
}
},
{
- "id": 881,
+ "id": 882,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -34358,7 +34358,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 378,
+ "line": 386,
"character": 4
}
],
@@ -34368,7 +34368,7 @@
}
},
{
- "id": 880,
+ "id": 881,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -34386,7 +34386,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 374,
+ "line": 382,
"character": 4
}
],
@@ -34399,26 +34399,26 @@
"groups": [
{
"title": "Properties",
- "children": [883, 879, 882, 881, 880]
+ "children": [884, 880, 883, 882, 881]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 366,
+ "line": 374,
"character": 17
}
]
},
{
- "id": 845,
+ "id": 846,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 854,
+ "id": 855,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -34428,7 +34428,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 286,
+ "line": 294,
"character": 4
}
],
@@ -34438,7 +34438,7 @@
}
},
{
- "id": 846,
+ "id": 847,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -34446,7 +34446,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 279,
+ "line": 287,
"character": 4
}
],
@@ -34456,7 +34456,7 @@
}
},
{
- "id": 848,
+ "id": 849,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -34466,14 +34466,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 281,
+ "line": 289,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 849,
+ "id": 850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34481,13 +34481,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 281,
+ "line": 289,
"character": 20
}
],
"indexSignatures": [
{
- "id": 850,
+ "id": 851,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -34495,13 +34495,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 282,
+ "line": 290,
"character": 8
}
],
"parameters": [
{
- "id": 851,
+ "id": 852,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -34522,7 +34522,7 @@
}
},
{
- "id": 852,
+ "id": 853,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -34530,7 +34530,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 284,
+ "line": 292,
"character": 4
}
],
@@ -34540,7 +34540,7 @@
}
},
{
- "id": 855,
+ "id": 856,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -34550,7 +34550,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 287,
+ "line": 295,
"character": 4
}
],
@@ -34560,7 +34560,7 @@
}
},
{
- "id": 853,
+ "id": 854,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -34568,7 +34568,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 285,
+ "line": 293,
"character": 4
}
],
@@ -34578,7 +34578,7 @@
}
},
{
- "id": 856,
+ "id": 857,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -34588,7 +34588,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 288,
+ "line": 296,
"character": 4
}
],
@@ -34598,7 +34598,7 @@
}
},
{
- "id": 847,
+ "id": 848,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -34606,7 +34606,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 280,
+ "line": 288,
"character": 4
}
],
@@ -34619,19 +34619,19 @@
"groups": [
{
"title": "Properties",
- "children": [854, 846, 848, 852, 855, 853, 856, 847]
+ "children": [855, 847, 849, 853, 856, 854, 857, 848]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 278,
+ "line": 286,
"character": 17
}
]
},
{
- "id": 874,
+ "id": 875,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -34639,13 +34639,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 335,
+ "line": 343,
"character": 17
}
],
"indexSignatures": [
{
- "id": 875,
+ "id": 876,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -34653,13 +34653,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 336,
+ "line": 344,
"character": 4
}
],
"parameters": [
{
- "id": 876,
+ "id": 877,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -34678,14 +34678,14 @@
]
},
{
- "id": 1027,
+ "id": 1028,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1028,
+ "id": 1029,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -34701,7 +34701,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 652,
+ "line": 660,
"character": 4
}
],
@@ -34711,7 +34711,7 @@
}
},
{
- "id": 1031,
+ "id": 1032,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -34721,21 +34721,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 657,
+ "line": 665,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1032,
+ "id": 1033,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1034,
+ "id": 1035,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -34759,7 +34759,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 664,
+ "line": 672,
"character": 8
}
],
@@ -34769,7 +34769,7 @@
}
},
{
- "id": 1033,
+ "id": 1034,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -34787,7 +34787,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 659,
+ "line": 667,
"character": 8
}
],
@@ -34800,13 +34800,13 @@
"groups": [
{
"title": "Properties",
- "children": [1034, 1033]
+ "children": [1035, 1034]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 657,
+ "line": 665,
"character": 14
}
]
@@ -34814,7 +34814,7 @@
}
},
{
- "id": 1029,
+ "id": 1030,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -34830,7 +34830,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 654,
+ "line": 662,
"character": 4
}
],
@@ -34840,7 +34840,7 @@
}
},
{
- "id": 1030,
+ "id": 1031,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -34856,13 +34856,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 656,
+ "line": 664,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1039,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -34871,26 +34871,26 @@
"groups": [
{
"title": "Properties",
- "children": [1028, 1031, 1029, 1030]
+ "children": [1029, 1032, 1030, 1031]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 650,
+ "line": 658,
"character": 17
}
]
},
{
- "id": 1019,
+ "id": 1020,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1023,
+ "id": 1024,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -34900,21 +34900,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 639,
+ "line": 647,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1024,
+ "id": 1025,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1026,
+ "id": 1027,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -34938,7 +34938,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 647,
+ "line": 655,
"character": 8
}
],
@@ -34948,7 +34948,7 @@
}
},
{
- "id": 1025,
+ "id": 1026,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -34966,7 +34966,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 641,
+ "line": 649,
"character": 8
}
],
@@ -34979,13 +34979,13 @@
"groups": [
{
"title": "Properties",
- "children": [1026, 1025]
+ "children": [1027, 1026]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 639,
+ "line": 647,
"character": 14
}
]
@@ -34993,7 +34993,7 @@
}
},
{
- "id": 1020,
+ "id": 1021,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -35009,7 +35009,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 634,
+ "line": 642,
"character": 4
}
],
@@ -35019,7 +35019,7 @@
}
},
{
- "id": 1021,
+ "id": 1022,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -35035,7 +35035,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 636,
+ "line": 644,
"character": 4
}
],
@@ -35045,7 +35045,7 @@
}
},
{
- "id": 1022,
+ "id": 1023,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -35061,13 +35061,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 638,
+ "line": 646,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1038,
+ "target": 1039,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -35076,26 +35076,26 @@
"groups": [
{
"title": "Properties",
- "children": [1023, 1020, 1021, 1022]
+ "children": [1024, 1021, 1022, 1023]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 632,
+ "line": 640,
"character": 17
}
]
},
{
- "id": 1035,
+ "id": 1036,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1036,
+ "id": 1037,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -35111,7 +35111,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 669,
+ "line": 677,
"character": 4
}
],
@@ -35121,7 +35121,7 @@
}
},
{
- "id": 1037,
+ "id": 1038,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -35137,13 +35137,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 671,
+ "line": 679,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1039,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -35152,26 +35152,26 @@
"groups": [
{
"title": "Properties",
- "children": [1036, 1037]
+ "children": [1037, 1038]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 667,
+ "line": 675,
"character": 17
}
]
},
{
- "id": 2263,
+ "id": 2264,
"name": "WebSocketLike",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 2306,
+ "id": 2307,
"name": "binaryType",
"variant": "declaration",
"kind": 1024,
@@ -35191,7 +35191,7 @@
}
},
{
- "id": 2307,
+ "id": 2308,
"name": "bufferedAmount",
"variant": "declaration",
"kind": 1024,
@@ -35211,7 +35211,7 @@
}
},
{
- "id": 2267,
+ "id": 2268,
"name": "CLOSED",
"variant": "declaration",
"kind": 1024,
@@ -35231,7 +35231,7 @@
}
},
{
- "id": 2266,
+ "id": 2267,
"name": "CLOSING",
"variant": "declaration",
"kind": 1024,
@@ -35251,7 +35251,7 @@
}
},
{
- "id": 2264,
+ "id": 2265,
"name": "CONNECTING",
"variant": "declaration",
"kind": 1024,
@@ -35271,7 +35271,7 @@
}
},
{
- "id": 2309,
+ "id": 2310,
"name": "dispatchEvent",
"variant": "declaration",
"kind": 1024,
@@ -35288,7 +35288,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2310,
+ "id": 2311,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35302,7 +35302,7 @@
],
"signatures": [
{
- "id": 2311,
+ "id": 2312,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -35316,7 +35316,7 @@
],
"parameters": [
{
- "id": 2312,
+ "id": 2313,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -35342,7 +35342,7 @@
}
},
{
- "id": 2308,
+ "id": 2309,
"name": "extensions",
"variant": "declaration",
"kind": 1024,
@@ -35362,7 +35362,7 @@
}
},
{
- "id": 2288,
+ "id": 2289,
"name": "onclose",
"variant": "declaration",
"kind": 1024,
@@ -35384,7 +35384,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2289,
+ "id": 2290,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35398,7 +35398,7 @@
],
"signatures": [
{
- "id": 2290,
+ "id": 2291,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -35412,7 +35412,7 @@
],
"parameters": [
{
- "id": 2291,
+ "id": 2292,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -35423,7 +35423,7 @@
}
},
{
- "id": 2292,
+ "id": 2293,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -35451,7 +35451,7 @@
}
},
{
- "id": 2293,
+ "id": 2294,
"name": "onerror",
"variant": "declaration",
"kind": 1024,
@@ -35473,7 +35473,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2294,
+ "id": 2295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35487,7 +35487,7 @@
],
"signatures": [
{
- "id": 2295,
+ "id": 2296,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -35501,7 +35501,7 @@
],
"parameters": [
{
- "id": 2296,
+ "id": 2297,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -35512,7 +35512,7 @@
}
},
{
- "id": 2297,
+ "id": 2298,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -35540,7 +35540,7 @@
}
},
{
- "id": 2283,
+ "id": 2284,
"name": "onmessage",
"variant": "declaration",
"kind": 1024,
@@ -35562,7 +35562,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2284,
+ "id": 2285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35576,7 +35576,7 @@
],
"signatures": [
{
- "id": 2285,
+ "id": 2286,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -35590,7 +35590,7 @@
],
"parameters": [
{
- "id": 2286,
+ "id": 2287,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -35601,7 +35601,7 @@
}
},
{
- "id": 2287,
+ "id": 2288,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -35629,7 +35629,7 @@
}
},
{
- "id": 2278,
+ "id": 2279,
"name": "onopen",
"variant": "declaration",
"kind": 1024,
@@ -35651,7 +35651,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2279,
+ "id": 2280,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35665,7 +35665,7 @@
],
"signatures": [
{
- "id": 2280,
+ "id": 2281,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -35679,7 +35679,7 @@
],
"parameters": [
{
- "id": 2281,
+ "id": 2282,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -35690,7 +35690,7 @@
}
},
{
- "id": 2282,
+ "id": 2283,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -35718,7 +35718,7 @@
}
},
{
- "id": 2265,
+ "id": 2266,
"name": "OPEN",
"variant": "declaration",
"kind": 1024,
@@ -35738,7 +35738,7 @@
}
},
{
- "id": 2270,
+ "id": 2271,
"name": "protocol",
"variant": "declaration",
"kind": 1024,
@@ -35758,7 +35758,7 @@
}
},
{
- "id": 2268,
+ "id": 2269,
"name": "readyState",
"variant": "declaration",
"kind": 1024,
@@ -35778,7 +35778,7 @@
}
},
{
- "id": 2269,
+ "id": 2270,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -35798,7 +35798,7 @@
}
},
{
- "id": 2298,
+ "id": 2299,
"name": "addEventListener",
"variant": "declaration",
"kind": 2048,
@@ -35812,7 +35812,7 @@
],
"signatures": [
{
- "id": 2299,
+ "id": 2300,
"name": "addEventListener",
"variant": "signature",
"kind": 4096,
@@ -35834,7 +35834,7 @@
],
"parameters": [
{
- "id": 2300,
+ "id": 2301,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -35845,7 +35845,7 @@
}
},
{
- "id": 2301,
+ "id": 2302,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -35869,7 +35869,7 @@
]
},
{
- "id": 2271,
+ "id": 2272,
"name": "close",
"variant": "declaration",
"kind": 2048,
@@ -35883,7 +35883,7 @@
],
"signatures": [
{
- "id": 2272,
+ "id": 2273,
"name": "close",
"variant": "signature",
"kind": 4096,
@@ -35905,7 +35905,7 @@
],
"parameters": [
{
- "id": 2273,
+ "id": 2274,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -35918,7 +35918,7 @@
}
},
{
- "id": 2274,
+ "id": 2275,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -35939,7 +35939,7 @@
]
},
{
- "id": 2302,
+ "id": 2303,
"name": "removeEventListener",
"variant": "declaration",
"kind": 2048,
@@ -35953,7 +35953,7 @@
],
"signatures": [
{
- "id": 2303,
+ "id": 2304,
"name": "removeEventListener",
"variant": "signature",
"kind": 4096,
@@ -35975,7 +35975,7 @@
],
"parameters": [
{
- "id": 2304,
+ "id": 2305,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -35986,7 +35986,7 @@
}
},
{
- "id": 2305,
+ "id": 2306,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -36010,7 +36010,7 @@
]
},
{
- "id": 2275,
+ "id": 2276,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -36024,7 +36024,7 @@
],
"signatures": [
{
- "id": 2276,
+ "id": 2277,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -36046,7 +36046,7 @@
],
"parameters": [
{
- "id": 2277,
+ "id": 2278,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -36112,13 +36112,13 @@
{
"title": "Properties",
"children": [
- 2306, 2307, 2267, 2266, 2264, 2309, 2308, 2288, 2293, 2283, 2278, 2265, 2270,
- 2268, 2269
+ 2307, 2308, 2268, 2267, 2265, 2310, 2309, 2289, 2294, 2284, 2279, 2266, 2271,
+ 2269, 2270
]
},
{
"title": "Methods",
- "children": [2298, 2271, 2302, 2275]
+ "children": [2299, 2272, 2303, 2276]
}
],
"sources": [
@@ -36130,7 +36130,7 @@
]
},
{
- "id": 2313,
+ "id": 2314,
"name": "WebSocketLikeConstructor",
"variant": "declaration",
"kind": 256,
@@ -36153,7 +36153,7 @@
},
"children": [
{
- "id": 2314,
+ "id": 2315,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -36167,7 +36167,7 @@
],
"signatures": [
{
- "id": 2315,
+ "id": 2316,
"name": "WebSocketLikeConstructor",
"variant": "signature",
"kind": 16384,
@@ -36181,7 +36181,7 @@
],
"parameters": [
{
- "id": 2316,
+ "id": 2317,
"name": "address",
"variant": "param",
"kind": 32768,
@@ -36206,7 +36206,7 @@
}
},
{
- "id": 2317,
+ "id": 2318,
"name": "subprotocols",
"variant": "param",
"kind": 32768,
@@ -36233,7 +36233,7 @@
],
"type": {
"type": "reference",
- "target": 2263,
+ "target": 2264,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -36244,7 +36244,7 @@
"groups": [
{
"title": "Constructors",
- "children": [2314]
+ "children": [2315]
}
],
"sources": [
@@ -36256,7 +36256,7 @@
],
"indexSignatures": [
{
- "id": 2318,
+ "id": 2319,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -36270,7 +36270,7 @@
],
"parameters": [
{
- "id": 2319,
+ "id": 2320,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -36289,7 +36289,7 @@
]
},
{
- "id": 840,
+ "id": 841,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -36297,7 +36297,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 256,
+ "line": 264,
"character": 12
}
],
@@ -36334,7 +36334,7 @@
{
"type": "reflection",
"declaration": {
- "id": 841,
+ "id": 842,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -36342,7 +36342,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 256,
+ "line": 264,
"character": 64
}
]
@@ -36421,7 +36421,7 @@
}
},
{
- "id": 1148,
+ "id": 1149,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -36429,7 +36429,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 954,
+ "line": 962,
"character": 12
}
],
@@ -36448,7 +36448,7 @@
}
},
{
- "id": 943,
+ "id": 944,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -36456,7 +36456,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 543,
+ "line": 551,
"character": 12
}
],
@@ -36475,7 +36475,7 @@
}
},
{
- "id": 1275,
+ "id": 1276,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -36492,21 +36492,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1057,
+ "line": 1065,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1276,
+ "id": 1277,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1277,
+ "id": 1278,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -36522,7 +36522,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1059,
+ "line": 1067,
"character": 4
}
],
@@ -36532,7 +36532,7 @@
}
},
{
- "id": 1278,
+ "id": 1279,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -36548,7 +36548,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1061,
+ "line": 1069,
"character": 4
}
],
@@ -36561,13 +36561,13 @@
"groups": [
{
"title": "Properties",
- "children": [1277, 1278]
+ "children": [1278, 1279]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1057,
+ "line": 1065,
"character": 45
}
]
@@ -36575,7 +36575,7 @@
}
},
{
- "id": 1272,
+ "id": 1273,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36592,25 +36592,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1050,
+ "line": 1058,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1273,
+ "id": 1274,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1274,
+ "id": 1275,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -36626,7 +36626,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1052,
+ "line": 1060,
"character": 4
}
],
@@ -36639,13 +36639,13 @@
"groups": [
{
"title": "Properties",
- "children": [1274]
+ "children": [1275]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1050,
+ "line": 1058,
"character": 61
}
]
@@ -36657,7 +36657,7 @@
}
},
{
- "id": 1282,
+ "id": 1283,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -36674,21 +36674,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1073,
+ "line": 1081,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1283,
+ "id": 1284,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1284,
+ "id": 1285,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -36704,7 +36704,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1075,
+ "line": 1083,
"character": 4
}
],
@@ -36717,13 +36717,13 @@
"groups": [
{
"title": "Properties",
- "children": [1284]
+ "children": [1285]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1073,
+ "line": 1081,
"character": 44
}
]
@@ -36731,7 +36731,7 @@
}
},
{
- "id": 1279,
+ "id": 1280,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36748,25 +36748,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1066,
+ "line": 1074,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1280,
+ "id": 1281,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1281,
+ "id": 1282,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -36782,7 +36782,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1068,
+ "line": 1076,
"character": 4
}
],
@@ -36790,7 +36790,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 858,
+ "target": 859,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -36800,13 +36800,13 @@
"groups": [
{
"title": "Properties",
- "children": [1281]
+ "children": [1282]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1066,
+ "line": 1074,
"character": 60
}
]
@@ -36818,7 +36818,7 @@
}
},
{
- "id": 1139,
+ "id": 1140,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36826,17 +36826,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 903,
+ "line": 911,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -36877,7 +36877,7 @@
}
},
{
- "id": 1143,
+ "id": 1144,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36885,7 +36885,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 946,
+ "line": 954,
"character": 12
}
],
@@ -36894,19 +36894,19 @@
"types": [
{
"type": "reference",
- "target": 1138,
+ "target": 1139,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1139,
+ "target": 1140,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1140,
+ "target": 1141,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -36914,7 +36914,7 @@
}
},
{
- "id": 1138,
+ "id": 1139,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36922,17 +36922,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 901,
+ "line": 909,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -36973,7 +36973,7 @@
}
},
{
- "id": 1140,
+ "id": 1141,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37002,17 +37002,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 922,
+ "line": 930,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -37053,7 +37053,7 @@
}
},
{
- "id": 1141,
+ "id": 1142,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -37069,13 +37069,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 940,
+ "line": 948,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -37112,7 +37112,7 @@
}
},
{
- "id": 1142,
+ "id": 1143,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37128,17 +37128,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 945,
+ "line": 953,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 1141,
+ "target": 1142,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -37148,7 +37148,7 @@
}
},
{
- "id": 1317,
+ "id": 1318,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37156,17 +37156,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1194,
+ "line": 1202,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -37207,7 +37207,7 @@
}
},
{
- "id": 1134,
+ "id": 1135,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37215,7 +37215,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 887,
+ "line": 895,
"character": 12
}
],
@@ -37224,19 +37224,19 @@
"types": [
{
"type": "reference",
- "target": 1316,
+ "target": 1317,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1317,
+ "target": 1318,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1318,
+ "target": 1319,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -37244,7 +37244,7 @@
}
},
{
- "id": 1316,
+ "id": 1317,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37252,17 +37252,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1189,
+ "line": 1197,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -37303,7 +37303,7 @@
}
},
{
- "id": 1318,
+ "id": 1319,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37332,17 +37332,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1201,
+ "line": 1209,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -37383,7 +37383,7 @@
}
},
{
- "id": 1149,
+ "id": 1150,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37391,25 +37391,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 955,
+ "line": 963,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1150,
+ "id": 1151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1153,
+ "id": 1154,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -37425,7 +37425,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 974,
+ "line": 982,
"character": 4
}
],
@@ -37436,7 +37436,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 842,
+ "target": 843,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
@@ -37452,7 +37452,7 @@
}
},
{
- "id": 1151,
+ "id": 1152,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -37468,7 +37468,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 957,
+ "line": 965,
"character": 4
}
],
@@ -37477,7 +37477,7 @@
"types": [
{
"type": "reference",
- "target": 1148,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -37489,7 +37489,7 @@
}
},
{
- "id": 1152,
+ "id": 1153,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -37509,7 +37509,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1175
+ "target": 1176
}
]
}
@@ -37518,7 +37518,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 964,
+ "line": 972,
"character": 4
}
],
@@ -37527,7 +37527,7 @@
"types": [
{
"type": "reference",
- "target": 1148,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -37542,13 +37542,13 @@
"groups": [
{
"title": "Properties",
- "children": [1153, 1151, 1152]
+ "children": [1154, 1152, 1153]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 955,
+ "line": 963,
"character": 74
}
]
@@ -37560,7 +37560,7 @@
}
},
{
- "id": 1144,
+ "id": 1145,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37576,13 +37576,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 948,
+ "line": 956,
"character": 12
}
],
"typeParameters": [
{
- "id": 1147,
+ "id": 1148,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -37617,7 +37617,7 @@
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "intersection",
@@ -37625,14 +37625,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1145,
+ "id": 1146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1146,
+ "id": 1147,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -37648,7 +37648,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 950,
+ "line": 958,
"character": 4
}
],
@@ -37656,11 +37656,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "reference",
- "target": 858,
+ "target": 859,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -37674,13 +37674,13 @@
"groups": [
{
"title": "Properties",
- "children": [1146]
+ "children": [1147]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 948,
+ "line": 956,
"character": 106
}
]
@@ -37697,7 +37697,7 @@
},
"objectType": {
"type": "reference",
- "target": 1147,
+ "target": 1148,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -37707,11 +37707,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "reference",
- "target": 858,
+ "target": 859,
"typeArguments": [
{
"type": "reference",
@@ -37745,7 +37745,7 @@
}
},
{
- "id": 1135,
+ "id": 1136,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37753,25 +37753,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 888,
+ "line": 896,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1136,
+ "id": 1137,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1137,
+ "id": 1138,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -37787,7 +37787,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 890,
+ "line": 898,
"character": 4
}
],
@@ -37800,13 +37800,13 @@
"groups": [
{
"title": "Properties",
- "children": [1137]
+ "children": [1138]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 888,
+ "line": 896,
"character": 52
}
]
@@ -37818,7 +37818,7 @@
}
},
{
- "id": 1133,
+ "id": 1134,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37834,17 +37834,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 886,
+ "line": 894,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 1126,
+ "target": 1127,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -37854,7 +37854,7 @@
}
},
{
- "id": 1126,
+ "id": 1127,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -37870,21 +37870,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 870,
+ "line": 878,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1127,
+ "id": 1128,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1128,
+ "id": 1129,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -37900,7 +37900,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 872,
+ "line": 880,
"character": 4
}
],
@@ -37910,7 +37910,7 @@
}
},
{
- "id": 1130,
+ "id": 1131,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -37926,7 +37926,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 876,
+ "line": 884,
"character": 4
}
],
@@ -37936,7 +37936,7 @@
}
},
{
- "id": 1131,
+ "id": 1132,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -37952,7 +37952,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 878,
+ "line": 886,
"character": 4
}
],
@@ -37962,7 +37962,7 @@
}
},
{
- "id": 1129,
+ "id": 1130,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -37986,7 +37986,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 874,
+ "line": 882,
"character": 4
}
],
@@ -37996,7 +37996,7 @@
}
},
{
- "id": 1132,
+ "id": 1133,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38012,7 +38012,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 880,
+ "line": 888,
"character": 4
}
],
@@ -38027,13 +38027,13 @@
"groups": [
{
"title": "Properties",
- "children": [1128, 1130, 1131, 1129, 1132]
+ "children": [1129, 1131, 1132, 1130, 1133]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 870,
+ "line": 878,
"character": 40
}
]
@@ -38041,7 +38041,7 @@
}
},
{
- "id": 1453,
+ "id": 1454,
"name": "AuthOAuthAuthorizationDetailsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38068,26 +38068,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1494,
+ "line": 1502,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "union",
"types": [
{
"type": "reference",
- "target": 1440,
+ "target": 1441,
"name": "OAuthAuthorizationDetails",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1450,
+ "target": 1451,
"name": "OAuthRedirect",
"package": "@supabase/auth-js"
}
@@ -38099,7 +38099,7 @@
}
},
{
- "id": 1454,
+ "id": 1455,
"name": "AuthOAuthConsentResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38115,17 +38115,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1499,
+ "line": 1507,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 1450,
+ "target": 1451,
"name": "OAuthRedirect",
"package": "@supabase/auth-js"
}
@@ -38135,7 +38135,7 @@
}
},
{
- "id": 1460,
+ "id": 1461,
"name": "AuthOAuthGrantsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38151,19 +38151,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1516,
+ "line": 1524,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "array",
"elementType": {
"type": "reference",
- "target": 1455,
+ "target": 1456,
"name": "OAuthGrant",
"package": "@supabase/auth-js"
}
@@ -38174,7 +38174,7 @@
}
},
{
- "id": 1461,
+ "id": 1462,
"name": "AuthOAuthRevokeGrantResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38190,18 +38190,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1521,
+ "line": 1529,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1462,
+ "id": 1463,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -38209,7 +38209,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1521,
+ "line": 1529,
"character": 57
}
]
@@ -38221,7 +38221,7 @@
}
},
{
- "id": 806,
+ "id": 807,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38242,25 +38242,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 183,
+ "line": 191,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 807,
+ "id": 808,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 810,
+ "id": 811,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -38270,7 +38270,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 186,
+ "line": 194,
"character": 4
}
],
@@ -38289,7 +38289,7 @@
}
},
{
- "id": 809,
+ "id": 810,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -38297,7 +38297,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 185,
+ "line": 193,
"character": 4
}
],
@@ -38307,7 +38307,7 @@
}
},
{
- "id": 808,
+ "id": 809,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38315,7 +38315,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 184,
+ "line": 192,
"character": 4
}
],
@@ -38328,13 +38328,13 @@
"groups": [
{
"title": "Properties",
- "children": [810, 809, 808]
+ "children": [811, 810, 809]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 183,
+ "line": 191,
"character": 59
}
]
@@ -38346,7 +38346,7 @@
}
},
{
- "id": 797,
+ "id": 798,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38354,25 +38354,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 169,
+ "line": 177,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 798,
+ "id": 799,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 800,
+ "id": 801,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -38380,7 +38380,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 171,
+ "line": 179,
"character": 4
}
],
@@ -38401,7 +38401,7 @@
}
},
{
- "id": 799,
+ "id": 800,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38409,7 +38409,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 170,
+ "line": 178,
"character": 4
}
],
@@ -38433,13 +38433,13 @@
"groups": [
{
"title": "Properties",
- "children": [800, 799]
+ "children": [801, 800]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 169,
+ "line": 177,
"character": 56
}
]
@@ -38451,7 +38451,7 @@
}
},
{
- "id": 801,
+ "id": 802,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -38459,25 +38459,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 173,
+ "line": 181,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 802,
+ "id": 803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 804,
+ "id": 805,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -38485,7 +38485,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 175,
+ "line": 183,
"character": 4
}
],
@@ -38506,7 +38506,7 @@
}
},
{
- "id": 803,
+ "id": 804,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38514,7 +38514,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 174,
+ "line": 182,
"character": 4
}
],
@@ -38535,7 +38535,7 @@
}
},
{
- "id": 805,
+ "id": 806,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -38545,7 +38545,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 176,
+ "line": 184,
"character": 4
}
],
@@ -38554,7 +38554,7 @@
"types": [
{
"type": "reference",
- "target": 771,
+ "target": 772,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -38569,13 +38569,13 @@
"groups": [
{
"title": "Properties",
- "children": [804, 803, 805]
+ "children": [805, 804, 806]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 173,
+ "line": 181,
"character": 64
}
]
@@ -38587,7 +38587,7 @@
}
},
{
- "id": 811,
+ "id": 812,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38595,25 +38595,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 188,
+ "line": 196,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 812,
+ "id": 813,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 814,
+ "id": 815,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -38621,7 +38621,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 190,
+ "line": 198,
"character": 4
}
],
@@ -38633,7 +38633,7 @@
}
},
{
- "id": 813,
+ "id": 814,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38641,7 +38641,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 189,
+ "line": 197,
"character": 4
}
],
@@ -38656,13 +38656,13 @@
"groups": [
{
"title": "Properties",
- "children": [814, 813]
+ "children": [815, 814]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 188,
+ "line": 196,
"character": 61
}
]
@@ -38674,7 +38674,7 @@
}
},
{
- "id": 815,
+ "id": 816,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -38682,25 +38682,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 192,
+ "line": 200,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 816,
+ "id": 817,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 818,
+ "id": 819,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -38708,7 +38708,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 194,
+ "line": 202,
"character": 4
}
],
@@ -38720,7 +38720,7 @@
}
},
{
- "id": 817,
+ "id": 818,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38728,7 +38728,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 193,
+ "line": 201,
"character": 4
}
],
@@ -38740,7 +38740,7 @@
}
},
{
- "id": 819,
+ "id": 820,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -38750,13 +38750,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 195,
+ "line": 203,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 771,
+ "target": 772,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -38765,13 +38765,13 @@
"groups": [
{
"title": "Properties",
- "children": [818, 817, 819]
+ "children": [819, 818, 820]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 192,
+ "line": 200,
"character": 69
}
]
@@ -38783,7 +38783,7 @@
}
},
{
- "id": 1298,
+ "id": 1299,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -38791,13 +38791,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1116,
+ "line": 1124,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
@@ -38811,7 +38811,7 @@
}
},
{
- "id": 1383,
+ "id": 1384,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -38827,21 +38827,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1310,
+ "line": 1318,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1384,
+ "id": 1385,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1385,
+ "id": 1386,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -38857,7 +38857,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1312,
+ "line": 1320,
"character": 4
}
],
@@ -38867,7 +38867,7 @@
}
},
{
- "id": 1386,
+ "id": 1387,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -38885,7 +38885,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1314,
+ "line": 1322,
"character": 4
}
],
@@ -38895,7 +38895,7 @@
}
},
{
- "id": 1388,
+ "id": 1389,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -38913,7 +38913,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1318,
+ "line": 1326,
"character": 4
}
],
@@ -38921,14 +38921,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1363,
+ "target": 1364,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1387,
+ "id": 1388,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -38944,7 +38944,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1316,
+ "line": 1324,
"character": 4
}
],
@@ -38957,7 +38957,7 @@
}
},
{
- "id": 1389,
+ "id": 1390,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -38975,7 +38975,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1320,
+ "line": 1328,
"character": 4
}
],
@@ -38983,14 +38983,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1364,
+ "target": 1365,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1390,
+ "id": 1391,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -39008,7 +39008,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1322,
+ "line": 1330,
"character": 4
}
],
@@ -39021,13 +39021,13 @@
"groups": [
{
"title": "Properties",
- "children": [1385, 1386, 1388, 1387, 1389, 1390]
+ "children": [1386, 1387, 1389, 1388, 1390, 1391]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1310,
+ "line": 1318,
"character": 38
}
]
@@ -39064,7 +39064,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 173,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L173"
}
],
"typeParameters": [
@@ -39100,7 +39100,7 @@
}
},
{
- "id": 1039,
+ "id": 1040,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -39108,7 +39108,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 674,
+ "line": 682,
"character": 12
}
],
@@ -39143,7 +39143,7 @@
}
},
{
- "id": 999,
+ "id": 1000,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -39151,7 +39151,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 605,
+ "line": 613,
"character": 12
}
],
@@ -39166,7 +39166,7 @@
}
},
{
- "id": 1000,
+ "id": 1001,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -39174,7 +39174,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 606,
+ "line": 614,
"character": 12
}
],
@@ -39184,14 +39184,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1001,
+ "id": 1002,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1002,
+ "id": 1003,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -39199,7 +39199,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 607,
+ "line": 615,
"character": 4
}
],
@@ -39209,7 +39209,7 @@
}
},
{
- "id": 1005,
+ "id": 1006,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39219,21 +39219,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 612,
+ "line": 620,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1006,
+ "id": 1007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1008,
+ "id": 1009,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -39251,7 +39251,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 616,
+ "line": 624,
"character": 8
}
],
@@ -39261,7 +39261,7 @@
}
},
{
- "id": 1009,
+ "id": 1010,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -39271,7 +39271,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 617,
+ "line": 625,
"character": 8
}
],
@@ -39329,7 +39329,7 @@
}
},
{
- "id": 1007,
+ "id": 1008,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -39347,7 +39347,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 614,
+ "line": 622,
"character": 8
}
],
@@ -39360,13 +39360,13 @@
"groups": [
{
"title": "Properties",
- "children": [1008, 1009, 1007]
+ "children": [1009, 1010, 1008]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 612,
+ "line": 620,
"character": 14
}
]
@@ -39374,7 +39374,7 @@
}
},
{
- "id": 1004,
+ "id": 1005,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -39392,7 +39392,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 611,
+ "line": 619,
"character": 4
}
],
@@ -39402,7 +39402,7 @@
}
},
{
- "id": 1003,
+ "id": 1004,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -39428,13 +39428,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 609,
+ "line": 617,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 999,
+ "target": 1000,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -39443,13 +39443,13 @@
"groups": [
{
"title": "Properties",
- "children": [1002, 1005, 1004, 1003]
+ "children": [1003, 1006, 1005, 1004]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 606,
+ "line": 614,
"character": 38
}
]
@@ -39458,14 +39458,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1010,
+ "id": 1011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1011,
+ "id": 1012,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -39473,7 +39473,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 620,
+ "line": 628,
"character": 4
}
],
@@ -39483,7 +39483,7 @@
}
},
{
- "id": 1012,
+ "id": 1013,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -39523,7 +39523,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 622,
+ "line": 630,
"character": 4
}
],
@@ -39533,7 +39533,7 @@
}
},
{
- "id": 1014,
+ "id": 1015,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39543,21 +39543,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 625,
+ "line": 633,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1015,
+ "id": 1016,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1016,
+ "id": 1017,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -39575,7 +39575,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 627,
+ "line": 635,
"character": 8
}
],
@@ -39588,13 +39588,13 @@
"groups": [
{
"title": "Properties",
- "children": [1016]
+ "children": [1017]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 625,
+ "line": 633,
"character": 14
}
]
@@ -39602,7 +39602,7 @@
}
},
{
- "id": 1013,
+ "id": 1014,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -39618,7 +39618,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 624,
+ "line": 632,
"character": 4
}
],
@@ -39636,13 +39636,13 @@
"groups": [
{
"title": "Properties",
- "children": [1011, 1012, 1014, 1013]
+ "children": [1012, 1013, 1015, 1014]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 619,
+ "line": 627,
"character": 4
}
]
@@ -39652,7 +39652,7 @@
}
},
{
- "id": 858,
+ "id": 859,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -39676,7 +39676,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1155
+ "target": 1156
},
{
"kind": "text",
@@ -39690,7 +39690,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1266
+ "target": 1267
},
{
"kind": "text",
@@ -39716,32 +39716,32 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 307,
+ "line": 315,
"character": 12
}
],
"typeParameters": [
{
- "id": 867,
+ "id": 868,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 857,
+ "target": 858,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 857,
+ "target": 858,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 868,
+ "id": 869,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -39780,14 +39780,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 859,
+ "id": 860,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 864,
+ "id": 865,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -39795,7 +39795,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 320,
+ "line": 328,
"character": 4
}
],
@@ -39805,7 +39805,7 @@
}
},
{
- "id": 862,
+ "id": 863,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -39837,20 +39837,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 315,
+ "line": 323,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 867,
+ "target": 868,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 861,
+ "id": 862,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -39868,7 +39868,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 311,
+ "line": 319,
"character": 4
}
],
@@ -39878,7 +39878,7 @@
}
},
{
- "id": 860,
+ "id": 861,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -39894,7 +39894,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 309,
+ "line": 317,
"character": 4
}
],
@@ -39904,7 +39904,7 @@
}
},
{
- "id": 866,
+ "id": 867,
"name": "last_challenged_at",
"variant": "declaration",
"kind": 1024,
@@ -39914,7 +39914,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 322,
+ "line": 330,
"character": 4
}
],
@@ -39924,7 +39924,7 @@
}
},
{
- "id": 863,
+ "id": 864,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -39968,20 +39968,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 319,
+ "line": 327,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 868,
+ "target": 869,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 865,
+ "id": 866,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -39989,7 +39989,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 321,
+ "line": 329,
"character": 4
}
],
@@ -40002,13 +40002,13 @@
"groups": [
{
"title": "Properties",
- "children": [864, 862, 861, 860, 866, 863, 865]
+ "children": [865, 863, 862, 861, 867, 864, 866]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 307,
+ "line": 315,
"character": 146
}
]
@@ -40016,7 +40016,7 @@
}
},
{
- "id": 857,
+ "id": 858,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -40048,7 +40048,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 294,
+ "line": 302,
"character": 12
}
],
@@ -40435,7 +40435,7 @@
}
},
{
- "id": 1085,
+ "id": 1086,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -40443,21 +40443,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 741,
+ "line": 749,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1086,
+ "id": 1087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1088,
+ "id": 1089,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -40473,7 +40473,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 744,
+ "line": 752,
"character": 4
}
],
@@ -40483,7 +40483,7 @@
}
},
{
- "id": 1089,
+ "id": 1090,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -40499,7 +40499,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 748,
+ "line": 756,
"character": 4
}
],
@@ -40509,7 +40509,7 @@
}
},
{
- "id": 1090,
+ "id": 1091,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -40519,7 +40519,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 749,
+ "line": 757,
"character": 4
}
],
@@ -40532,7 +40532,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1091,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -40546,7 +40546,7 @@
}
},
{
- "id": 1087,
+ "id": 1088,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -40554,7 +40554,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 742,
+ "line": 750,
"character": 4
}
],
@@ -40576,13 +40576,13 @@
"groups": [
{
"title": "Properties",
- "children": [1088, 1089, 1090, 1087]
+ "children": [1089, 1090, 1091, 1088]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 741,
+ "line": 749,
"character": 44
}
]
@@ -40590,7 +40590,7 @@
}
},
{
- "id": 1075,
+ "id": 1076,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -40598,21 +40598,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 729,
+ "line": 737,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1076,
+ "id": 1077,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1078,
+ "id": 1079,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -40628,7 +40628,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 732,
+ "line": 740,
"character": 4
}
],
@@ -40638,7 +40638,7 @@
}
},
{
- "id": 1079,
+ "id": 1080,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -40648,7 +40648,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 733,
+ "line": 741,
"character": 4
}
],
@@ -40661,7 +40661,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1091,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -40684,7 +40684,7 @@
}
},
{
- "id": 1077,
+ "id": 1078,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -40692,7 +40692,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 730,
+ "line": 738,
"character": 4
}
],
@@ -40714,13 +40714,13 @@
"groups": [
{
"title": "Properties",
- "children": [1078, 1079, 1077]
+ "children": [1079, 1080, 1078]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 729,
+ "line": 737,
"character": 46
}
]
@@ -40728,7 +40728,7 @@
}
},
{
- "id": 1094,
+ "id": 1095,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -40736,7 +40736,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 761,
+ "line": 769,
"character": 12
}
],
@@ -40745,25 +40745,25 @@
"types": [
{
"type": "reference",
- "target": 1069,
+ "target": 1070,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1075,
+ "target": 1076,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1080,
+ "target": 1081,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1085,
+ "target": 1086,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -40771,7 +40771,7 @@
}
},
{
- "id": 1099,
+ "id": 1100,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -40787,21 +40787,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 767,
+ "line": 775,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1100,
+ "id": 1101,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1101,
+ "id": 1102,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -40817,7 +40817,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 772,
+ "line": 780,
"character": 4
}
],
@@ -40827,7 +40827,7 @@
}
},
{
- "id": 1102,
+ "id": 1103,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -40843,7 +40843,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 777,
+ "line": 785,
"character": 4
}
],
@@ -40853,7 +40853,7 @@
}
},
{
- "id": 1103,
+ "id": 1104,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -40869,7 +40869,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 781,
+ "line": 789,
"character": 4
}
],
@@ -40879,7 +40879,7 @@
}
},
{
- "id": 1104,
+ "id": 1105,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -40895,7 +40895,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 783,
+ "line": 791,
"character": 4
}
],
@@ -40905,7 +40905,7 @@
}
},
{
- "id": 1105,
+ "id": 1106,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -40921,13 +40921,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 785,
+ "line": 793,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1106,
+ "target": 1107,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -40936,13 +40936,13 @@
"groups": [
{
"title": "Properties",
- "children": [1101, 1102, 1103, 1104, 1105]
+ "children": [1102, 1103, 1104, 1105, 1106]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 767,
+ "line": 775,
"character": 37
}
]
@@ -40950,7 +40950,7 @@
}
},
{
- "id": 1095,
+ "id": 1096,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -40958,25 +40958,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 762,
+ "line": 770,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1096,
+ "id": 1097,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1097,
+ "id": 1098,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -40984,19 +40984,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 763,
+ "line": 771,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1099,
+ "target": 1100,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1098,
+ "id": 1099,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -41004,7 +41004,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 764,
+ "line": 772,
"character": 4
}
],
@@ -41019,13 +41019,13 @@
"groups": [
{
"title": "Properties",
- "children": [1097, 1098]
+ "children": [1098, 1099]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 762,
+ "line": 770,
"character": 64
}
]
@@ -41037,7 +41037,7 @@
}
},
{
- "id": 1106,
+ "id": 1107,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -41045,7 +41045,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 787,
+ "line": 795,
"character": 12
}
],
@@ -41080,7 +41080,7 @@
}
},
{
- "id": 1080,
+ "id": 1081,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -41088,21 +41088,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 735,
+ "line": 743,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1081,
+ "id": 1082,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1083,
+ "id": 1084,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -41118,7 +41118,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 738,
+ "line": 746,
"character": 4
}
],
@@ -41128,7 +41128,7 @@
}
},
{
- "id": 1084,
+ "id": 1085,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -41138,7 +41138,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 739,
+ "line": 747,
"character": 4
}
],
@@ -41151,7 +41151,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1091,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -41165,7 +41165,7 @@
}
},
{
- "id": 1082,
+ "id": 1083,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -41173,7 +41173,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 736,
+ "line": 744,
"character": 4
}
],
@@ -41186,13 +41186,13 @@
"groups": [
{
"title": "Properties",
- "children": [1083, 1084, 1082]
+ "children": [1084, 1085, 1083]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 735,
+ "line": 743,
"character": 41
}
]
@@ -41200,7 +41200,7 @@
}
},
{
- "id": 1069,
+ "id": 1070,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -41208,21 +41208,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 723,
+ "line": 731,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1070,
+ "id": 1071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1072,
+ "id": 1073,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -41230,7 +41230,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 725,
+ "line": 733,
"character": 4
}
],
@@ -41240,7 +41240,7 @@
}
},
{
- "id": 1074,
+ "id": 1075,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -41250,7 +41250,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 727,
+ "line": 735,
"character": 4
}
],
@@ -41263,7 +41263,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1091,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -41286,7 +41286,7 @@
}
},
{
- "id": 1073,
+ "id": 1074,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -41294,7 +41294,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 726,
+ "line": 734,
"character": 4
}
],
@@ -41304,7 +41304,7 @@
}
},
{
- "id": 1071,
+ "id": 1072,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -41312,7 +41312,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 724,
+ "line": 732,
"character": 4
}
],
@@ -41325,13 +41325,13 @@
"groups": [
{
"title": "Properties",
- "children": [1072, 1074, 1073, 1071]
+ "children": [1073, 1075, 1074, 1072]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 723,
+ "line": 731,
"character": 39
}
]
@@ -41655,7 +41655,7 @@
],
"type": {
"type": "reference",
- "target": 943,
+ "target": 944,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
@@ -41870,6 +41870,45 @@
"name": "boolean"
}
},
+ {
+ "id": 770,
+ "name": "skipAutoInitialize",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If true, skips automatic initialization in constructor. Useful for SSR\ncontexts where initialization timing must be controlled to prevent race\nconditions with HTTP response generation."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@default",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```ts\nfalse\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 133,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
{
"id": 757,
"name": "storage",
@@ -41887,7 +41926,7 @@
],
"type": {
"type": "reference",
- "target": 1292,
+ "target": 1293,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -42026,7 +42065,7 @@
],
"type": {
"type": "reference",
- "target": 1292,
+ "target": 1293,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -42036,7 +42075,8 @@
{
"title": "Properties",
"children": [
- 755, 761, 747, 759, 760, 767, 742, 766, 769, 756, 757, 746, 768, 741, 758
+ 755, 761, 747, 759, 760, 767, 742, 766, 769, 756, 770, 757, 746, 768, 741,
+ 758
]
}
],
@@ -42051,7 +42091,7 @@
}
},
{
- "id": 1295,
+ "id": 1296,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -42059,21 +42099,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1113,
+ "line": 1121,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1296,
+ "id": 1297,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1297,
+ "id": 1298,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -42081,7 +42121,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1114,
+ "line": 1122,
"character": 4
}
],
@@ -42090,7 +42130,7 @@
"types": [
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -42105,13 +42145,13 @@
"groups": [
{
"title": "Properties",
- "children": [1297]
+ "children": [1298]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1113,
+ "line": 1121,
"character": 31
}
]
@@ -42119,7 +42159,7 @@
}
},
{
- "id": 1319,
+ "id": 1320,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -42127,21 +42167,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1202,
+ "line": 1210,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1320,
+ "id": 1321,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1321,
+ "id": 1322,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -42149,7 +42189,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1203,
+ "line": 1211,
"character": 4
}
],
@@ -42172,7 +42212,7 @@
}
},
{
- "id": 1322,
+ "id": 1323,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -42180,7 +42220,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1204,
+ "line": 1212,
"character": 4
}
],
@@ -42190,7 +42230,7 @@
}
},
{
- "id": 1323,
+ "id": 1324,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -42198,7 +42238,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1205,
+ "line": 1213,
"character": 4
}
],
@@ -42211,13 +42251,13 @@
"groups": [
{
"title": "Properties",
- "children": [1321, 1322, 1323]
+ "children": [1322, 1323, 1324]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1202,
+ "line": 1210,
"character": 24
}
]
@@ -42416,7 +42456,7 @@
}
},
{
- "id": 1125,
+ "id": 1126,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -42424,7 +42464,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 865,
+ "line": 873,
"character": 12
}
],
@@ -42439,7 +42479,7 @@
}
},
{
- "id": 1124,
+ "id": 1125,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -42447,7 +42487,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 861,
+ "line": 869,
"character": 12
}
],
@@ -42456,19 +42496,19 @@
"types": [
{
"type": "reference",
- "target": 1121,
+ "target": 1122,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1122,
+ "target": 1123,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1123,
+ "target": 1124,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -42476,7 +42516,7 @@
}
},
{
- "id": 1122,
+ "id": 1123,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -42484,13 +42524,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 845,
+ "line": 853,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -42521,7 +42561,7 @@
}
},
{
- "id": 1121,
+ "id": 1122,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -42529,13 +42569,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 840,
+ "line": 848,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "reference",
@@ -42552,7 +42592,7 @@
}
},
{
- "id": 1123,
+ "id": 1124,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -42581,13 +42621,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 860,
+ "line": 868,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -42618,7 +42658,7 @@
}
},
{
- "id": 1107,
+ "id": 1108,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -42626,7 +42666,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 788,
+ "line": 796,
"character": 12
}
],
@@ -42635,19 +42675,19 @@
"types": [
{
"type": "reference",
- "target": 1313,
+ "target": 1314,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1314,
+ "target": 1315,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1315,
+ "target": 1316,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -42655,7 +42695,7 @@
}
},
{
- "id": 1314,
+ "id": 1315,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -42663,13 +42703,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1157,
+ "line": 1165,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -42706,7 +42746,7 @@
}
},
{
- "id": 1313,
+ "id": 1314,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -42714,13 +42754,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1152,
+ "line": 1160,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -42757,7 +42797,7 @@
}
},
{
- "id": 1315,
+ "id": 1316,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -42786,13 +42826,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1164,
+ "line": 1172,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -42829,7 +42869,7 @@
}
},
{
- "id": 1120,
+ "id": 1121,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -42837,7 +42877,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 839,
+ "line": 847,
"character": 12
}
],
@@ -42863,7 +42903,7 @@
}
},
{
- "id": 1108,
+ "id": 1109,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -42871,21 +42911,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 789,
+ "line": 797,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1109,
+ "id": 1110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1110,
+ "id": 1111,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -42901,7 +42941,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 791,
+ "line": 799,
"character": 4
}
],
@@ -42914,13 +42954,13 @@
"groups": [
{
"title": "Properties",
- "children": [1110]
+ "children": [1111]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 789,
+ "line": 797,
"character": 32
}
]
@@ -42928,7 +42968,7 @@
}
},
{
- "id": 1119,
+ "id": 1120,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -42936,7 +42976,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 833,
+ "line": 841,
"character": 12
}
],
@@ -42945,19 +42985,19 @@
"types": [
{
"type": "reference",
- "target": 1111,
+ "target": 1112,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1117,
+ "target": 1118,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -42965,7 +43005,7 @@
}
},
{
- "id": 1112,
+ "id": 1113,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -42973,13 +43013,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 805,
+ "line": 813,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -43010,7 +43050,7 @@
}
},
{
- "id": 1111,
+ "id": 1112,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -43018,13 +43058,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 803,
+ "line": 811,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -43055,7 +43095,7 @@
}
},
{
- "id": 1113,
+ "id": 1114,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -43071,13 +43111,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 823,
+ "line": 831,
"character": 12
}
],
"typeParameters": [
{
- "id": 1116,
+ "id": 1117,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -43121,14 +43161,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1114,
+ "id": 1115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1115,
+ "id": 1116,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -43136,7 +43176,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 824,
+ "line": 832,
"character": 4
}
],
@@ -43161,7 +43201,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1116,
+ "target": 1117,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43177,13 +43217,13 @@
"groups": [
{
"title": "Properties",
- "children": [1115]
+ "children": [1116]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 823,
+ "line": 831,
"character": 98
}
]
@@ -43191,7 +43231,7 @@
}
},
{
- "id": 1117,
+ "id": 1118,
"name": "MFAVerifyWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -43220,13 +43260,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 832,
+ "line": 840,
"character": 12
}
],
"typeParameters": [
{
- "id": 1118,
+ "id": 1119,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -43269,7 +43309,7 @@
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -43285,11 +43325,11 @@
},
{
"type": "reference",
- "target": 1113,
+ "target": 1114,
"typeArguments": [
{
"type": "reference",
- "target": 1118,
+ "target": 1119,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43306,7 +43346,7 @@
}
},
{
- "id": 1038,
+ "id": 1039,
"name": "MobileOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -43314,7 +43354,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 673,
+ "line": 681,
"character": 12
}
],
@@ -43333,7 +43373,7 @@
}
},
{
- "id": 1434,
+ "id": 1435,
"name": "OAuthAuthorizationClient",
"variant": "declaration",
"kind": 2097152,
@@ -43349,21 +43389,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1417,
+ "line": 1425,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1435,
+ "id": 1436,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1436,
+ "id": 1437,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -43379,7 +43419,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1419,
+ "line": 1427,
"character": 4
}
],
@@ -43389,7 +43429,7 @@
}
},
{
- "id": 1439,
+ "id": 1440,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -43405,7 +43445,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1425,
+ "line": 1433,
"character": 4
}
],
@@ -43415,7 +43455,7 @@
}
},
{
- "id": 1437,
+ "id": 1438,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -43431,7 +43471,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1421,
+ "line": 1429,
"character": 4
}
],
@@ -43441,7 +43481,7 @@
}
},
{
- "id": 1438,
+ "id": 1439,
"name": "uri",
"variant": "declaration",
"kind": 1024,
@@ -43457,7 +43497,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1423,
+ "line": 1431,
"character": 4
}
],
@@ -43470,13 +43510,13 @@
"groups": [
{
"title": "Properties",
- "children": [1436, 1439, 1437, 1438]
+ "children": [1437, 1440, 1438, 1439]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1417,
+ "line": 1425,
"character": 39
}
]
@@ -43484,7 +43524,7 @@
}
},
{
- "id": 1440,
+ "id": 1441,
"name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
@@ -43516,21 +43556,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1438,
+ "line": 1446,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1441,
+ "id": 1442,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1442,
+ "id": 1443,
"name": "authorization_id",
"variant": "declaration",
"kind": 1024,
@@ -43546,7 +43586,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1440,
+ "line": 1448,
"character": 4
}
],
@@ -43556,7 +43596,7 @@
}
},
{
- "id": 1444,
+ "id": 1445,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -43572,19 +43612,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1444,
+ "line": 1452,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1434,
+ "target": 1435,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1443,
+ "id": 1444,
"name": "redirect_uri",
"variant": "declaration",
"kind": 1024,
@@ -43600,7 +43640,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1442,
+ "line": 1450,
"character": 4
}
],
@@ -43610,7 +43650,7 @@
}
},
{
- "id": 1449,
+ "id": 1450,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -43626,7 +43666,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1453,
+ "line": 1461,
"character": 4
}
],
@@ -43636,7 +43676,7 @@
}
},
{
- "id": 1445,
+ "id": 1446,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -43652,21 +43692,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1446,
+ "line": 1454,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1446,
+ "id": 1447,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1448,
+ "id": 1449,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -43682,7 +43722,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1450,
+ "line": 1458,
"character": 8
}
],
@@ -43692,7 +43732,7 @@
}
},
{
- "id": 1447,
+ "id": 1448,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -43708,7 +43748,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1448,
+ "line": 1456,
"character": 8
}
],
@@ -43721,13 +43761,13 @@
"groups": [
{
"title": "Properties",
- "children": [1448, 1447]
+ "children": [1449, 1448]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1446,
+ "line": 1454,
"character": 10
}
]
@@ -43738,13 +43778,13 @@
"groups": [
{
"title": "Properties",
- "children": [1442, 1444, 1443, 1449, 1445]
+ "children": [1443, 1445, 1444, 1450, 1446]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1438,
+ "line": 1446,
"character": 40
}
]
@@ -43752,7 +43792,7 @@
}
},
{
- "id": 1367,
+ "id": 1368,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -43768,21 +43808,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1276,
+ "line": 1284,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1368,
+ "id": 1369,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1369,
+ "id": 1370,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -43798,7 +43838,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1278,
+ "line": 1286,
"character": 4
}
],
@@ -43808,7 +43848,7 @@
}
},
{
- "id": 1370,
+ "id": 1371,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -43824,7 +43864,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1280,
+ "line": 1288,
"character": 4
}
],
@@ -43834,7 +43874,7 @@
}
},
{
- "id": 1371,
+ "id": 1372,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -43852,7 +43892,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1282,
+ "line": 1290,
"character": 4
}
],
@@ -43862,7 +43902,7 @@
}
},
{
- "id": 1372,
+ "id": 1373,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -43878,19 +43918,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1284,
+ "line": 1292,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1365,
+ "target": 1366,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1375,
+ "id": 1376,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -43908,7 +43948,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1290,
+ "line": 1298,
"character": 4
}
],
@@ -43918,7 +43958,7 @@
}
},
{
- "id": 1381,
+ "id": 1382,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -43934,7 +43974,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1302,
+ "line": 1310,
"character": 4
}
],
@@ -43944,7 +43984,7 @@
}
},
{
- "id": 1378,
+ "id": 1379,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -43960,7 +44000,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1296,
+ "line": 1304,
"character": 4
}
],
@@ -43968,14 +44008,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1363,
+ "target": 1364,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1376,
+ "id": 1377,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -43993,7 +44033,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1292,
+ "line": 1300,
"character": 4
}
],
@@ -44003,7 +44043,7 @@
}
},
{
- "id": 1377,
+ "id": 1378,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -44019,7 +44059,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1294,
+ "line": 1302,
"character": 4
}
],
@@ -44032,7 +44072,7 @@
}
},
{
- "id": 1374,
+ "id": 1375,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -44048,19 +44088,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1288,
+ "line": 1296,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1366,
+ "target": 1367,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1379,
+ "id": 1380,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -44076,7 +44116,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1298,
+ "line": 1306,
"character": 4
}
],
@@ -44084,14 +44124,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1364,
+ "target": 1365,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1380,
+ "id": 1381,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -44109,7 +44149,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1300,
+ "line": 1308,
"character": 4
}
],
@@ -44119,7 +44159,7 @@
}
},
{
- "id": 1373,
+ "id": 1374,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -44135,7 +44175,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1286,
+ "line": 1294,
"character": 4
}
],
@@ -44145,7 +44185,7 @@
}
},
{
- "id": 1382,
+ "id": 1383,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -44161,7 +44201,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1304,
+ "line": 1312,
"character": 4
}
],
@@ -44175,15 +44215,15 @@
{
"title": "Properties",
"children": [
- 1369, 1370, 1371, 1372, 1375, 1381, 1378, 1376, 1377, 1374, 1379, 1380,
- 1373, 1382
+ 1370, 1371, 1372, 1373, 1376, 1382, 1379, 1377, 1378, 1375, 1380, 1381,
+ 1374, 1383
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1276,
+ "line": 1284,
"character": 26
}
]
@@ -44191,7 +44231,7 @@
}
},
{
- "id": 1363,
+ "id": 1364,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -44207,7 +44247,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1256,
+ "line": 1264,
"character": 12
}
],
@@ -44226,7 +44266,7 @@
}
},
{
- "id": 1399,
+ "id": 1400,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -44242,7 +44282,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1350,
+ "line": 1358,
"character": 12
}
],
@@ -44252,14 +44292,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1400,
+ "id": 1401,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1401,
+ "id": 1402,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -44267,7 +44307,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1351,
+ "line": 1359,
"character": 4
}
],
@@ -44277,14 +44317,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1402,
+ "id": 1403,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1404,
+ "id": 1405,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -44292,7 +44332,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1353,
+ "line": 1361,
"character": 8
}
],
@@ -44302,7 +44342,7 @@
}
},
{
- "id": 1403,
+ "id": 1404,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -44310,7 +44350,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1352,
+ "line": 1360,
"character": 8
}
],
@@ -44318,7 +44358,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1367,
+ "target": 1368,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -44328,13 +44368,13 @@
"groups": [
{
"title": "Properties",
- "children": [1404, 1403]
+ "children": [1405, 1404]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1351,
+ "line": 1359,
"character": 10
}
]
@@ -44342,7 +44382,7 @@
},
{
"type": "reference",
- "target": 1299,
+ "target": 1300,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -44350,7 +44390,7 @@
}
},
{
- "id": 1405,
+ "id": 1406,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -44358,7 +44398,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1355,
+ "line": 1363,
"character": 4
}
],
@@ -44371,13 +44411,13 @@
"groups": [
{
"title": "Properties",
- "children": [1401, 1405]
+ "children": [1402, 1406]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1350,
+ "line": 1358,
"character": 38
}
]
@@ -44386,14 +44426,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1406,
+ "id": 1407,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1407,
+ "id": 1408,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -44401,21 +44441,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1357,
+ "line": 1365,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1408,
+ "id": 1409,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1409,
+ "id": 1410,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -44423,7 +44463,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1358,
+ "line": 1366,
"character": 8
}
],
@@ -44435,13 +44475,13 @@
"groups": [
{
"title": "Properties",
- "children": [1409]
+ "children": [1410]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1357,
+ "line": 1365,
"character": 10
}
]
@@ -44449,7 +44489,7 @@
}
},
{
- "id": 1410,
+ "id": 1411,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -44457,13 +44497,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1360,
+ "line": 1368,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -44472,13 +44512,13 @@
"groups": [
{
"title": "Properties",
- "children": [1407, 1410]
+ "children": [1408, 1411]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1356,
+ "line": 1364,
"character": 4
}
]
@@ -44488,7 +44528,7 @@
}
},
{
- "id": 1366,
+ "id": 1367,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -44504,7 +44544,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1271,
+ "line": 1279,
"character": 12
}
],
@@ -44523,7 +44563,7 @@
}
},
{
- "id": 1398,
+ "id": 1399,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -44539,17 +44579,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1345,
+ "line": 1353,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 1367,
+ "target": 1368,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -44559,7 +44599,7 @@
}
},
{
- "id": 1364,
+ "id": 1365,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -44575,7 +44615,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1261,
+ "line": 1269,
"character": 12
}
],
@@ -44585,7 +44625,7 @@
}
},
{
- "id": 1365,
+ "id": 1366,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -44601,7 +44641,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1266,
+ "line": 1274,
"character": 12
}
],
@@ -44620,7 +44660,7 @@
}
},
{
- "id": 1455,
+ "id": 1456,
"name": "OAuthGrant",
"variant": "declaration",
"kind": 2097152,
@@ -44636,21 +44676,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1504,
+ "line": 1512,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1456,
+ "id": 1457,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1457,
+ "id": 1458,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -44666,19 +44706,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1506,
+ "line": 1514,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1434,
+ "target": 1435,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1459,
+ "id": 1460,
"name": "granted_at",
"variant": "declaration",
"kind": 1024,
@@ -44694,7 +44734,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1510,
+ "line": 1518,
"character": 4
}
],
@@ -44704,7 +44744,7 @@
}
},
{
- "id": 1458,
+ "id": 1459,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -44720,7 +44760,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1508,
+ "line": 1516,
"character": 4
}
],
@@ -44736,13 +44776,13 @@
"groups": [
{
"title": "Properties",
- "children": [1457, 1459, 1458]
+ "children": [1458, 1460, 1459]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1504,
+ "line": 1512,
"character": 25
}
]
@@ -44750,7 +44790,7 @@
}
},
{
- "id": 1450,
+ "id": 1451,
"name": "OAuthRedirect",
"variant": "declaration",
"kind": 2097152,
@@ -44774,21 +44814,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1468,
+ "line": 1476,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1451,
+ "id": 1452,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1452,
+ "id": 1453,
"name": "redirect_url",
"variant": "declaration",
"kind": 1024,
@@ -44804,7 +44844,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1470,
+ "line": 1478,
"character": 4
}
],
@@ -44817,13 +44857,13 @@
"groups": [
{
"title": "Properties",
- "children": [1452]
+ "children": [1453]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1468,
+ "line": 1476,
"character": 28
}
]
@@ -44831,7 +44871,7 @@
}
},
{
- "id": 820,
+ "id": 821,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -44839,7 +44879,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 197,
+ "line": 205,
"character": 12
}
],
@@ -44849,14 +44889,14 @@
{
"type": "reflection",
"declaration": {
- "id": 821,
+ "id": 822,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 822,
+ "id": 823,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -44864,21 +44904,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 198,
+ "line": 206,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 823,
+ "id": 824,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 824,
+ "id": 825,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -44886,7 +44926,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 199,
+ "line": 207,
"character": 8
}
],
@@ -44898,7 +44938,7 @@
}
},
{
- "id": 825,
+ "id": 826,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -44906,7 +44946,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 200,
+ "line": 208,
"character": 8
}
],
@@ -44919,13 +44959,13 @@
"groups": [
{
"title": "Properties",
- "children": [824, 825]
+ "children": [825, 826]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 198,
+ "line": 206,
"character": 10
}
]
@@ -44933,7 +44973,7 @@
}
},
{
- "id": 826,
+ "id": 827,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -44941,7 +44981,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 202,
+ "line": 210,
"character": 4
}
],
@@ -44954,13 +44994,13 @@
"groups": [
{
"title": "Properties",
- "children": [822, 826]
+ "children": [823, 827]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 197,
+ "line": 205,
"character": 28
}
]
@@ -44969,14 +45009,14 @@
{
"type": "reflection",
"declaration": {
- "id": 827,
+ "id": 828,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 828,
+ "id": 829,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -44984,21 +45024,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 204,
+ "line": 212,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 829,
+ "id": 830,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 830,
+ "id": 831,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -45006,7 +45046,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 205,
+ "line": 213,
"character": 8
}
],
@@ -45018,7 +45058,7 @@
}
},
{
- "id": 831,
+ "id": 832,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -45026,7 +45066,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 206,
+ "line": 214,
"character": 8
}
],
@@ -45039,13 +45079,13 @@
"groups": [
{
"title": "Properties",
- "children": [830, 831]
+ "children": [831, 832]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 204,
+ "line": 212,
"character": 10
}
]
@@ -45053,7 +45093,7 @@
}
},
{
- "id": 832,
+ "id": 833,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -45061,13 +45101,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 208,
+ "line": 216,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -45076,13 +45116,13 @@
"groups": [
{
"title": "Properties",
- "children": [828, 832]
+ "children": [829, 833]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 203,
+ "line": 211,
"character": 4
}
]
@@ -45092,7 +45132,7 @@
}
},
{
- "id": 1306,
+ "id": 1307,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -45100,21 +45140,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1123,
+ "line": 1131,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1307,
+ "id": 1308,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1308,
+ "id": 1309,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -45132,7 +45172,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1125,
+ "line": 1133,
"character": 4
}
],
@@ -45142,7 +45182,7 @@
}
},
{
- "id": 1309,
+ "id": 1310,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -45160,7 +45200,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1127,
+ "line": 1135,
"character": 4
}
],
@@ -45173,13 +45213,13 @@
"groups": [
{
"title": "Properties",
- "children": [1308, 1309]
+ "children": [1309, 1310]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1123,
+ "line": 1131,
"character": 25
}
]
@@ -45187,7 +45227,7 @@
}
},
{
- "id": 1299,
+ "id": 1300,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -45195,21 +45235,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1117,
+ "line": 1125,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1300,
+ "id": 1301,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1302,
+ "id": 1303,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -45217,7 +45257,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1120,
+ "line": 1128,
"character": 4
}
],
@@ -45227,7 +45267,7 @@
}
},
{
- "id": 1301,
+ "id": 1302,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -45235,7 +45275,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1119,
+ "line": 1127,
"character": 4
}
],
@@ -45254,7 +45294,7 @@
}
},
{
- "id": 1303,
+ "id": 1304,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -45262,7 +45302,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1121,
+ "line": 1129,
"character": 4
}
],
@@ -45275,19 +45315,19 @@
"groups": [
{
"title": "Properties",
- "children": [1302, 1301, 1303]
+ "children": [1303, 1302, 1304]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1117,
+ "line": 1125,
"character": 25
}
],
"indexSignatures": [
{
- "id": 1304,
+ "id": 1305,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45295,13 +45335,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1118,
+ "line": 1126,
"character": 4
}
],
"parameters": [
{
- "id": 1305,
+ "id": 1306,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45465,7 +45505,7 @@
}
},
{
- "id": 775,
+ "id": 776,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -45481,13 +45521,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 12
}
],
"typeParameters": [
{
- "id": 776,
+ "id": 777,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45498,7 +45538,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 776,
+ "target": 777,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -45514,7 +45554,7 @@
},
"trueType": {
"type": "reference",
- "target": 776,
+ "target": 777,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -45527,7 +45567,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 776,
+ "target": 777,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -45547,7 +45587,7 @@
},
"objectType": {
"type": "reference",
- "target": 776,
+ "target": 777,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -45721,7 +45761,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 161,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L161"
}
],
"typeParameters": [
@@ -45769,7 +45809,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 161,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L161"
}
],
"type": {
@@ -45789,7 +45829,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 161,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L161"
}
]
}
@@ -45840,7 +45880,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 162,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L162"
}
],
"type": {
@@ -45869,7 +45909,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 160,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L160"
}
],
"typeParameters": [
@@ -45922,7 +45962,7 @@
}
},
{
- "id": 1989,
+ "id": 1990,
"name": "RealtimeChannelOptions",
"variant": "declaration",
"kind": 2097152,
@@ -45937,14 +45977,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1990,
+ "id": 1991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1991,
+ "id": 1992,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -45959,14 +45999,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1992,
+ "id": 1993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1993,
+ "id": 1994,
"name": "broadcast",
"variant": "declaration",
"kind": 1024,
@@ -45991,14 +46031,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1994,
+ "id": 1995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1996,
+ "id": 1997,
"name": "ack",
"variant": "declaration",
"kind": 1024,
@@ -46018,7 +46058,7 @@
}
},
{
- "id": 1997,
+ "id": 1998,
"name": "replay",
"variant": "declaration",
"kind": 1024,
@@ -46043,7 +46083,7 @@
}
},
{
- "id": 1995,
+ "id": 1996,
"name": "self",
"variant": "declaration",
"kind": 1024,
@@ -46066,7 +46106,7 @@
"groups": [
{
"title": "Properties",
- "children": [1996, 1997, 1995]
+ "children": [1997, 1998, 1996]
}
],
"sources": [
@@ -46080,7 +46120,7 @@
}
},
{
- "id": 1998,
+ "id": 1999,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -46105,14 +46145,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1999,
+ "id": 2000,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2001,
+ "id": 2002,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -46132,7 +46172,7 @@
}
},
{
- "id": 2000,
+ "id": 2001,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -46155,7 +46195,7 @@
"groups": [
{
"title": "Properties",
- "children": [2001, 2000]
+ "children": [2002, 2001]
}
],
"sources": [
@@ -46169,7 +46209,7 @@
}
},
{
- "id": 2002,
+ "id": 2003,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -46200,7 +46240,7 @@
"groups": [
{
"title": "Properties",
- "children": [1993, 1998, 2002]
+ "children": [1994, 1999, 2003]
}
],
"sources": [
@@ -46217,7 +46257,7 @@
"groups": [
{
"title": "Properties",
- "children": [1991]
+ "children": [1992]
}
],
"sources": [
@@ -46231,7 +46271,7 @@
}
},
{
- "id": 2003,
+ "id": 2004,
"name": "RealtimeChannelSendResponse",
"variant": "declaration",
"kind": 2097152,
@@ -46262,7 +46302,7 @@
}
},
{
- "id": 2118,
+ "id": 2119,
"name": "RealtimeClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -46277,14 +46317,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2119,
+ "id": 2120,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2146,
+ "id": 2147,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -46301,7 +46341,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2147,
+ "id": 2148,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46315,7 +46355,7 @@
],
"signatures": [
{
- "id": 2148,
+ "id": 2149,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -46350,7 +46390,7 @@
}
},
{
- "id": 2131,
+ "id": 2132,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -46375,7 +46415,7 @@
}
},
{
- "id": 2130,
+ "id": 2131,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -46400,7 +46440,7 @@
}
},
{
- "id": 2143,
+ "id": 2144,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -46425,7 +46465,7 @@
}
},
{
- "id": 2133,
+ "id": 2134,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -46442,7 +46482,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2134,
+ "id": 2135,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46456,7 +46496,7 @@
],
"indexSignatures": [
{
- "id": 2135,
+ "id": 2136,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46470,7 +46510,7 @@
],
"parameters": [
{
- "id": 2136,
+ "id": 2137,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46491,7 +46531,7 @@
}
},
{
- "id": 2123,
+ "id": 2124,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -46508,7 +46548,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2124,
+ "id": 2125,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46522,14 +46562,14 @@
],
"signatures": [
{
- "id": 2125,
+ "id": 2126,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 2126,
+ "id": 2127,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -46545,7 +46585,7 @@
}
},
{
- "id": 2127,
+ "id": 2128,
"name": "latency",
"variant": "param",
"kind": 32768,
@@ -46568,7 +46608,7 @@
}
},
{
- "id": 2122,
+ "id": 2123,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -46588,7 +46628,7 @@
}
},
{
- "id": 2141,
+ "id": 2142,
"name": "log_level",
"variant": "declaration",
"kind": 1024,
@@ -46613,7 +46653,7 @@
}
},
{
- "id": 2129,
+ "id": 2130,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -46638,7 +46678,7 @@
}
},
{
- "id": 2142,
+ "id": 2143,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -46663,7 +46703,7 @@
}
},
{
- "id": 2137,
+ "id": 2138,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -46680,7 +46720,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2138,
+ "id": 2139,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46694,7 +46734,7 @@
],
"indexSignatures": [
{
- "id": 2139,
+ "id": 2140,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46708,7 +46748,7 @@
],
"parameters": [
{
- "id": 2140,
+ "id": 2141,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46729,7 +46769,7 @@
}
},
{
- "id": 2132,
+ "id": 2133,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -46754,7 +46794,7 @@
}
},
{
- "id": 2121,
+ "id": 2122,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -46774,7 +46814,7 @@
}
},
{
- "id": 2120,
+ "id": 2121,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -46790,13 +46830,13 @@
],
"type": {
"type": "reference",
- "target": 2313,
+ "target": 2314,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
},
{
- "id": 2128,
+ "id": 2129,
"name": "vsn",
"variant": "declaration",
"kind": 1024,
@@ -46816,7 +46856,7 @@
}
},
{
- "id": 2144,
+ "id": 2145,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -46836,7 +46876,7 @@
}
},
{
- "id": 2145,
+ "id": 2146,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -46860,8 +46900,8 @@
{
"title": "Properties",
"children": [
- 2146, 2131, 2130, 2143, 2133, 2123, 2122, 2141, 2129, 2142, 2137, 2132,
- 2121, 2120, 2128, 2144, 2145
+ 2147, 2132, 2131, 2144, 2134, 2124, 2123, 2142, 2130, 2143, 2138, 2133,
+ 2122, 2121, 2129, 2145, 2146
]
}
],
@@ -46876,7 +46916,7 @@
}
},
{
- "id": 2149,
+ "id": 2150,
"name": "RealtimeMessage",
"variant": "declaration",
"kind": 2097152,
@@ -46891,14 +46931,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2150,
+ "id": 2151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2152,
+ "id": 2153,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -46916,7 +46956,7 @@
}
},
{
- "id": 2155,
+ "id": 2156,
"name": "join_ref",
"variant": "declaration",
"kind": 1024,
@@ -46936,7 +46976,7 @@
}
},
{
- "id": 2153,
+ "id": 2154,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -46954,7 +46994,7 @@
}
},
{
- "id": 2154,
+ "id": 2155,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -46972,7 +47012,7 @@
}
},
{
- "id": 2151,
+ "id": 2152,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -46993,7 +47033,7 @@
"groups": [
{
"title": "Properties",
- "children": [2152, 2155, 2153, 2154, 2151]
+ "children": [2153, 2156, 2154, 2155, 2152]
}
],
"sources": [
@@ -47007,7 +47047,7 @@
}
},
{
- "id": 2156,
+ "id": 2157,
"name": "RealtimePostgresChangesFilter",
"variant": "declaration",
"kind": 2097152,
@@ -47021,7 +47061,7 @@
],
"typeParameters": [
{
- "id": 2162,
+ "id": 2163,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47033,7 +47073,7 @@
[
{
"type": "reference",
- "target": 2232,
+ "target": 2233,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"package": "@supabase/realtime-js"
},
@@ -47046,14 +47086,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2157,
+ "id": 2158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2158,
+ "id": 2159,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -47075,14 +47115,14 @@
],
"type": {
"type": "reference",
- "target": 2162,
+ "target": 2163,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2161,
+ "id": 2162,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -47110,7 +47150,7 @@
}
},
{
- "id": 2159,
+ "id": 2160,
"name": "schema",
"variant": "declaration",
"kind": 1024,
@@ -47136,7 +47176,7 @@
}
},
{
- "id": 2160,
+ "id": 2161,
"name": "table",
"variant": "declaration",
"kind": 1024,
@@ -47167,7 +47207,7 @@
"groups": [
{
"title": "Properties",
- "children": [2158, 2161, 2159, 2160]
+ "children": [2159, 2162, 2160, 2161]
}
],
"sources": [
@@ -47181,7 +47221,7 @@
}
},
{
- "id": 2163,
+ "id": 2164,
"name": "RealtimePostgresChangesPayload",
"variant": "declaration",
"kind": 2097152,
@@ -47195,7 +47235,7 @@
],
"typeParameters": [
{
- "id": 2164,
+ "id": 2165,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47203,7 +47243,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2165,
+ "id": 2166,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47217,7 +47257,7 @@
],
"indexSignatures": [
{
- "id": 2166,
+ "id": 2167,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -47231,7 +47271,7 @@
],
"parameters": [
{
- "id": 2167,
+ "id": 2168,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -47257,11 +47297,11 @@
"types": [
{
"type": "reference",
- "target": 2168,
+ "target": 2169,
"typeArguments": [
{
"type": "reference",
- "target": 2164,
+ "target": 2165,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -47272,11 +47312,11 @@
},
{
"type": "reference",
- "target": 2178,
+ "target": 2179,
"typeArguments": [
{
"type": "reference",
- "target": 2164,
+ "target": 2165,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -47287,11 +47327,11 @@
},
{
"type": "reference",
- "target": 2187,
+ "target": 2188,
"typeArguments": [
{
"type": "reference",
- "target": 2164,
+ "target": 2165,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -47304,7 +47344,7 @@
}
},
{
- "id": 2187,
+ "id": 2188,
"name": "RealtimePostgresDeletePayload",
"variant": "declaration",
"kind": 2097152,
@@ -47318,7 +47358,7 @@
],
"typeParameters": [
{
- "id": 2193,
+ "id": 2194,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47326,7 +47366,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2194,
+ "id": 2195,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47340,7 +47380,7 @@
],
"indexSignatures": [
{
- "id": 2195,
+ "id": 2196,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -47354,7 +47394,7 @@
],
"parameters": [
{
- "id": 2196,
+ "id": 2197,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -47390,14 +47430,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2188,
+ "id": 2189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2189,
+ "id": 2190,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -47416,7 +47456,7 @@
[
{
"type": "reference",
- "target": 2236,
+ "target": 2237,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE",
"package": "@supabase/realtime-js"
},
@@ -47426,7 +47466,7 @@
}
},
{
- "id": 2190,
+ "id": 2191,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -47441,7 +47481,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2191,
+ "id": 2192,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47457,7 +47497,7 @@
}
},
{
- "id": 2192,
+ "id": 2193,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -47478,7 +47518,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2193,
+ "target": 2194,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -47492,7 +47532,7 @@
"groups": [
{
"title": "Properties",
- "children": [2189, 2190, 2192]
+ "children": [2190, 2191, 2193]
}
],
"sources": [
@@ -47508,7 +47548,7 @@
}
},
{
- "id": 2168,
+ "id": 2169,
"name": "RealtimePostgresInsertPayload",
"variant": "declaration",
"kind": 2097152,
@@ -47522,7 +47562,7 @@
],
"typeParameters": [
{
- "id": 2174,
+ "id": 2175,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47530,7 +47570,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2175,
+ "id": 2176,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47544,7 +47584,7 @@
],
"indexSignatures": [
{
- "id": 2176,
+ "id": 2177,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -47558,7 +47598,7 @@
],
"parameters": [
{
- "id": 2177,
+ "id": 2178,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -47594,14 +47634,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2169,
+ "id": 2170,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2170,
+ "id": 2171,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -47620,7 +47660,7 @@
[
{
"type": "reference",
- "target": 2234,
+ "target": 2235,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT",
"package": "@supabase/realtime-js"
},
@@ -47630,7 +47670,7 @@
}
},
{
- "id": 2171,
+ "id": 2172,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -47644,14 +47684,14 @@
],
"type": {
"type": "reference",
- "target": 2174,
+ "target": 2175,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2172,
+ "id": 2173,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -47666,7 +47706,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2173,
+ "id": 2174,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47685,7 +47725,7 @@
"groups": [
{
"title": "Properties",
- "children": [2170, 2171, 2172]
+ "children": [2171, 2172, 2173]
}
],
"sources": [
@@ -47701,7 +47741,7 @@
}
},
{
- "id": 2178,
+ "id": 2179,
"name": "RealtimePostgresUpdatePayload",
"variant": "declaration",
"kind": 2097152,
@@ -47715,7 +47755,7 @@
],
"typeParameters": [
{
- "id": 2183,
+ "id": 2184,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47723,7 +47763,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2184,
+ "id": 2185,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47737,7 +47777,7 @@
],
"indexSignatures": [
{
- "id": 2185,
+ "id": 2186,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -47751,7 +47791,7 @@
],
"parameters": [
{
- "id": 2186,
+ "id": 2187,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -47787,14 +47827,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2179,
+ "id": 2180,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2180,
+ "id": 2181,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -47813,7 +47853,7 @@
[
{
"type": "reference",
- "target": 2235,
+ "target": 2236,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE",
"package": "@supabase/realtime-js"
},
@@ -47823,7 +47863,7 @@
}
},
{
- "id": 2181,
+ "id": 2182,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -47837,14 +47877,14 @@
],
"type": {
"type": "reference",
- "target": 2183,
+ "target": 2184,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2182,
+ "id": 2183,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -47865,7 +47905,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2183,
+ "target": 2184,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -47879,7 +47919,7 @@
"groups": [
{
"title": "Properties",
- "children": [2180, 2181, 2182]
+ "children": [2181, 2182, 2183]
}
],
"sources": [
@@ -47895,7 +47935,7 @@
}
},
{
- "id": 2197,
+ "id": 2198,
"name": "RealtimePresenceJoinPayload",
"variant": "declaration",
"kind": 2097152,
@@ -47909,7 +47949,7 @@
],
"typeParameters": [
{
- "id": 2203,
+ "id": 2204,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47917,7 +47957,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2204,
+ "id": 2205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47931,7 +47971,7 @@
],
"indexSignatures": [
{
- "id": 2205,
+ "id": 2206,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -47945,7 +47985,7 @@
],
"parameters": [
{
- "id": 2206,
+ "id": 2207,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -47969,14 +48009,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2198,
+ "id": 2199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2201,
+ "id": 2202,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -47999,7 +48039,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2203,
+ "target": 2204,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -48011,7 +48051,7 @@
}
},
{
- "id": 2199,
+ "id": 2200,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -48030,7 +48070,7 @@
[
{
"type": "reference",
- "target": 2239,
+ "target": 2240,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN",
"package": "@supabase/realtime-js"
},
@@ -48040,7 +48080,7 @@
}
},
{
- "id": 2200,
+ "id": 2201,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -48058,7 +48098,7 @@
}
},
{
- "id": 2202,
+ "id": 2203,
"name": "newPresences",
"variant": "declaration",
"kind": 1024,
@@ -48081,7 +48121,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2203,
+ "target": 2204,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -48096,7 +48136,7 @@
"groups": [
{
"title": "Properties",
- "children": [2201, 2199, 2200, 2202]
+ "children": [2202, 2200, 2201, 2203]
}
],
"sources": [
@@ -48110,7 +48150,7 @@
}
},
{
- "id": 2207,
+ "id": 2208,
"name": "RealtimePresenceLeavePayload",
"variant": "declaration",
"kind": 2097152,
@@ -48124,7 +48164,7 @@
],
"typeParameters": [
{
- "id": 2213,
+ "id": 2214,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -48132,7 +48172,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2214,
+ "id": 2215,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48146,7 +48186,7 @@
],
"indexSignatures": [
{
- "id": 2215,
+ "id": 2216,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -48160,7 +48200,7 @@
],
"parameters": [
{
- "id": 2216,
+ "id": 2217,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -48184,14 +48224,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2208,
+ "id": 2209,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2211,
+ "id": 2212,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -48214,7 +48254,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2213,
+ "target": 2214,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -48226,7 +48266,7 @@
}
},
{
- "id": 2209,
+ "id": 2210,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -48245,7 +48285,7 @@
[
{
"type": "reference",
- "target": 2240,
+ "target": 2241,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE",
"package": "@supabase/realtime-js"
},
@@ -48255,7 +48295,7 @@
}
},
{
- "id": 2210,
+ "id": 2211,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -48273,7 +48313,7 @@
}
},
{
- "id": 2212,
+ "id": 2213,
"name": "leftPresences",
"variant": "declaration",
"kind": 1024,
@@ -48296,7 +48336,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2213,
+ "target": 2214,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -48311,7 +48351,7 @@
"groups": [
{
"title": "Properties",
- "children": [2211, 2209, 2210, 2212]
+ "children": [2212, 2210, 2211, 2213]
}
],
"sources": [
@@ -48325,7 +48365,7 @@
}
},
{
- "id": 2217,
+ "id": 2218,
"name": "RealtimePresenceState",
"variant": "declaration",
"kind": 2097152,
@@ -48339,7 +48379,7 @@
],
"typeParameters": [
{
- "id": 2221,
+ "id": 2222,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -48347,7 +48387,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2222,
+ "id": 2223,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48361,7 +48401,7 @@
],
"indexSignatures": [
{
- "id": 2223,
+ "id": 2224,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -48375,7 +48415,7 @@
],
"parameters": [
{
- "id": 2224,
+ "id": 2225,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -48397,7 +48437,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 2225,
+ "id": 2226,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48416,7 +48456,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2218,
+ "id": 2219,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48430,7 +48470,7 @@
],
"indexSignatures": [
{
- "id": 2219,
+ "id": 2220,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -48444,7 +48484,7 @@
],
"parameters": [
{
- "id": 2220,
+ "id": 2221,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -48466,7 +48506,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2221,
+ "target": 2222,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -48482,7 +48522,7 @@
}
},
{
- "id": 2226,
+ "id": 2227,
"name": "RealtimeRemoveChannelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -48513,7 +48553,7 @@
}
},
{
- "id": 780,
+ "id": 781,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -48529,20 +48569,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 149,
+ "line": 157,
"character": 12
}
],
"typeParameters": [
{
- "id": 787,
+ "id": 788,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 788,
+ "id": 789,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -48558,7 +48598,7 @@
},
"default": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -48570,14 +48610,14 @@
{
"type": "reflection",
"declaration": {
- "id": 781,
+ "id": 782,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 782,
+ "id": 783,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48585,20 +48625,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 150,
+ "line": 158,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 787,
+ "target": 788,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 783,
+ "id": 784,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -48606,7 +48646,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 151,
+ "line": 159,
"character": 4
}
],
@@ -48619,13 +48659,13 @@
"groups": [
{
"title": "Properties",
- "children": [782, 783]
+ "children": [783, 784]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 149,
+ "line": 157,
"character": 68
}
]
@@ -48634,14 +48674,14 @@
{
"type": "reflection",
"declaration": {
- "id": 784,
+ "id": 785,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 785,
+ "id": 786,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48649,7 +48689,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 153,
+ "line": 161,
"character": 4
}
],
@@ -48659,7 +48699,7 @@
}
},
{
- "id": 786,
+ "id": 787,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -48667,7 +48707,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 154,
+ "line": 162,
"character": 4
}
],
@@ -48684,19 +48724,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 788,
+ "target": 789,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -48707,13 +48747,13 @@
"groups": [
{
"title": "Properties",
- "children": [785, 786]
+ "children": [786, 787]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 152,
+ "line": 160,
"character": 4
}
]
@@ -48723,7 +48763,7 @@
}
},
{
- "id": 789,
+ "id": 790,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -48744,13 +48784,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 160,
+ "line": 168,
"character": 12
}
],
"typeParameters": [
{
- "id": 796,
+ "id": 797,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -48763,14 +48803,14 @@
{
"type": "reflection",
"declaration": {
- "id": 790,
+ "id": 791,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 791,
+ "id": 792,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48778,20 +48818,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 161,
+ "line": 169,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 796,
+ "target": 797,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 792,
+ "id": 793,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -48799,7 +48839,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 162,
+ "line": 170,
"character": 4
}
],
@@ -48812,13 +48852,13 @@
"groups": [
{
"title": "Properties",
- "children": [791, 792]
+ "children": [792, 793]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 160,
+ "line": 168,
"character": 46
}
]
@@ -48827,14 +48867,14 @@
{
"type": "reflection",
"declaration": {
- "id": 793,
+ "id": 794,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 794,
+ "id": 795,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48842,7 +48882,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 164,
+ "line": 172,
"character": 4
}
],
@@ -48850,7 +48890,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 796,
+ "target": 797,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -48867,7 +48907,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 796,
+ "target": 797,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -48885,7 +48925,7 @@
}
},
{
- "id": 795,
+ "id": 796,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -48893,13 +48933,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 167,
+ "line": 175,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -48908,13 +48948,13 @@
"groups": [
{
"title": "Properties",
- "children": [794, 795]
+ "children": [795, 796]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 163,
+ "line": 171,
"character": 4
}
]
@@ -48924,7 +48964,7 @@
}
},
{
- "id": 1324,
+ "id": 1325,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -48932,21 +48972,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1207,
+ "line": 1215,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1325,
+ "id": 1326,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1332,
+ "id": 1333,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -48954,19 +48994,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1214,
+ "line": 1222,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1148,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1328,
+ "id": 1329,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -48974,7 +49014,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1210,
+ "line": 1218,
"character": 4
}
],
@@ -48996,7 +49036,7 @@
}
},
{
- "id": 1329,
+ "id": 1330,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -49004,7 +49044,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1211,
+ "line": 1219,
"character": 4
}
],
@@ -49014,7 +49054,7 @@
}
},
{
- "id": 1330,
+ "id": 1331,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -49022,7 +49062,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1212,
+ "line": 1220,
"character": 4
}
],
@@ -49032,7 +49072,7 @@
}
},
{
- "id": 1326,
+ "id": 1327,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -49040,7 +49080,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1208,
+ "line": 1216,
"character": 4
}
],
@@ -49050,7 +49090,7 @@
}
},
{
- "id": 1331,
+ "id": 1332,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -49058,7 +49098,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1213,
+ "line": 1221,
"character": 4
}
],
@@ -49068,7 +49108,7 @@
}
},
{
- "id": 1333,
+ "id": 1334,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -49076,7 +49116,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1215,
+ "line": 1223,
"character": 4
}
],
@@ -49086,7 +49126,7 @@
}
},
{
- "id": 1327,
+ "id": 1328,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -49094,7 +49134,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1209,
+ "line": 1217,
"character": 4
}
],
@@ -49107,13 +49147,13 @@
"groups": [
{
"title": "Properties",
- "children": [1332, 1328, 1329, 1330, 1326, 1331, 1333, 1327]
+ "children": [1333, 1329, 1330, 1331, 1327, 1332, 1334, 1328]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1207,
+ "line": 1215,
"character": 29
}
]
@@ -49122,13 +49162,13 @@
"extendedBy": [
{
"type": "reference",
- "target": 1334,
+ "target": 1335,
"name": "JwtPayload"
}
]
},
{
- "id": 1040,
+ "id": 1041,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -49136,7 +49176,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 675,
+ "line": 683,
"character": 12
}
],
@@ -49146,14 +49186,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1041,
+ "id": 1042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1043,
+ "id": 1044,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -49161,7 +49201,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 677,
+ "line": 685,
"character": 4
}
],
@@ -49171,7 +49211,7 @@
}
},
{
- "id": 1044,
+ "id": 1045,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49181,21 +49221,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 678,
+ "line": 686,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1045,
+ "id": 1046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1047,
+ "id": 1048,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49213,7 +49253,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 682,
+ "line": 690,
"character": 8
}
],
@@ -49223,7 +49263,7 @@
}
},
{
- "id": 1046,
+ "id": 1047,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -49241,7 +49281,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 680,
+ "line": 688,
"character": 8
}
],
@@ -49254,13 +49294,13 @@
"groups": [
{
"title": "Properties",
- "children": [1047, 1046]
+ "children": [1048, 1047]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 678,
+ "line": 686,
"character": 14
}
]
@@ -49268,7 +49308,7 @@
}
},
{
- "id": 1042,
+ "id": 1043,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -49276,7 +49316,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 676,
+ "line": 684,
"character": 4
}
],
@@ -49289,7 +49329,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1039,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -49315,13 +49355,13 @@
"groups": [
{
"title": "Properties",
- "children": [1043, 1044, 1042]
+ "children": [1044, 1045, 1043]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 675,
+ "line": 683,
"character": 27
}
]
@@ -49330,14 +49370,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1048,
+ "id": 1049,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1051,
+ "id": 1052,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49347,21 +49387,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 687,
+ "line": 695,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1052,
+ "id": 1053,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1053,
+ "id": 1054,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49379,7 +49419,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 689,
+ "line": 697,
"character": 8
}
],
@@ -49392,13 +49432,13 @@
"groups": [
{
"title": "Properties",
- "children": [1053]
+ "children": [1054]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 687,
+ "line": 695,
"character": 14
}
]
@@ -49406,7 +49446,7 @@
}
},
{
- "id": 1050,
+ "id": 1051,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -49414,7 +49454,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 686,
+ "line": 694,
"character": 4
}
],
@@ -49424,7 +49464,7 @@
}
},
{
- "id": 1049,
+ "id": 1050,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -49432,7 +49472,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 685,
+ "line": 693,
"character": 4
}
],
@@ -49445,7 +49485,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1038,
+ "target": 1039,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -49471,13 +49511,13 @@
"groups": [
{
"title": "Properties",
- "children": [1051, 1050, 1049]
+ "children": [1052, 1051, 1050]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 684,
+ "line": 692,
"character": 4
}
]
@@ -49487,7 +49527,7 @@
}
},
{
- "id": 907,
+ "id": 908,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -49495,21 +49535,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 476,
+ "line": 484,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 908,
+ "id": 909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 909,
+ "id": 910,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49519,21 +49559,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 477,
+ "line": 485,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 910,
+ "id": 911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 912,
+ "id": 913,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49551,7 +49591,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 485,
+ "line": 493,
"character": 8
}
],
@@ -49561,7 +49601,7 @@
}
},
{
- "id": 911,
+ "id": 912,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -49595,7 +49635,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 483,
+ "line": 491,
"character": 8
}
],
@@ -49608,13 +49648,13 @@
"groups": [
{
"title": "Properties",
- "children": [912, 911]
+ "children": [913, 912]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 477,
+ "line": 485,
"character": 14
}
]
@@ -49625,13 +49665,13 @@
"groups": [
{
"title": "Properties",
- "children": [909]
+ "children": [910]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 476,
+ "line": 484,
"character": 43
}
]
@@ -49639,7 +49679,7 @@
}
},
{
- "id": 956,
+ "id": 957,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -49647,21 +49687,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 560,
+ "line": 568,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 957,
+ "id": 958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 961,
+ "id": 962,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -49687,7 +49727,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 566,
+ "line": 574,
"character": 4
}
],
@@ -49697,7 +49737,7 @@
}
},
{
- "id": 962,
+ "id": 963,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -49723,7 +49763,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 568,
+ "line": 576,
"character": 4
}
],
@@ -49733,7 +49773,7 @@
}
},
{
- "id": 963,
+ "id": 964,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49743,21 +49783,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 569,
+ "line": 577,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 964,
+ "id": 965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 965,
+ "id": 966,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49775,7 +49815,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 571,
+ "line": 579,
"character": 8
}
],
@@ -49788,13 +49828,13 @@
"groups": [
{
"title": "Properties",
- "children": [965]
+ "children": [966]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 569,
+ "line": 577,
"character": 14
}
]
@@ -49802,7 +49842,7 @@
}
},
{
- "id": 958,
+ "id": 959,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -49874,7 +49914,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 562,
+ "line": 570,
"character": 4
}
],
@@ -49911,7 +49951,7 @@
{
"type": "reflection",
"declaration": {
- "id": 959,
+ "id": 960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49919,7 +49959,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 562,
+ "line": 570,
"character": 78
}
]
@@ -49931,7 +49971,7 @@
}
},
{
- "id": 960,
+ "id": 961,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -49979,7 +50019,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 564,
+ "line": 572,
"character": 4
}
],
@@ -49992,13 +50032,13 @@
"groups": [
{
"title": "Properties",
- "children": [961, 962, 963, 958, 960]
+ "children": [962, 963, 964, 959, 961]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 560,
+ "line": 568,
"character": 43
}
]
@@ -50006,7 +50046,7 @@
}
},
{
- "id": 944,
+ "id": 945,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -50014,21 +50054,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 544,
+ "line": 552,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 945,
+ "id": 946,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 947,
+ "id": 948,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50038,21 +50078,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 547,
+ "line": 555,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 948,
+ "id": 949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 951,
+ "id": 952,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -50070,14 +50110,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 553,
+ "line": 561,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 952,
+ "id": 953,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -50085,13 +50125,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 553,
+ "line": 561,
"character": 22
}
],
"indexSignatures": [
{
- "id": 953,
+ "id": 954,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -50099,13 +50139,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 554,
+ "line": 562,
"character": 12
}
],
"parameters": [
{
- "id": 954,
+ "id": 955,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -50126,7 +50166,7 @@
}
},
{
- "id": 949,
+ "id": 950,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -50144,7 +50184,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 549,
+ "line": 557,
"character": 8
}
],
@@ -50154,7 +50194,7 @@
}
},
{
- "id": 950,
+ "id": 951,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -50172,7 +50212,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 551,
+ "line": 559,
"character": 8
}
],
@@ -50182,7 +50222,7 @@
}
},
{
- "id": 955,
+ "id": 956,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -50200,7 +50240,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 557,
+ "line": 565,
"character": 8
}
],
@@ -50213,13 +50253,13 @@
"groups": [
{
"title": "Properties",
- "children": [951, 949, 950, 955]
+ "children": [952, 950, 951, 956]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 547,
+ "line": 555,
"character": 14
}
]
@@ -50227,7 +50267,7 @@
}
},
{
- "id": 946,
+ "id": 947,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -50243,7 +50283,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 546,
+ "line": 554,
"character": 4
}
],
@@ -50258,13 +50298,13 @@
"groups": [
{
"title": "Properties",
- "children": [947, 946]
+ "children": [948, 947]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 544,
+ "line": 552,
"character": 41
}
]
@@ -50272,7 +50312,7 @@
}
},
{
- "id": 921,
+ "id": 922,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -50280,7 +50320,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 503,
+ "line": 511,
"character": 12
}
],
@@ -50299,14 +50339,14 @@
{
"type": "reflection",
"declaration": {
- "id": 922,
+ "id": 923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 923,
+ "id": 924,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50316,21 +50356,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 504,
+ "line": 512,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 924,
+ "id": 925,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 925,
+ "id": 926,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50340,7 +50380,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 505,
+ "line": 513,
"character": 8
}
],
@@ -50353,13 +50393,13 @@
"groups": [
{
"title": "Properties",
- "children": [925]
+ "children": [926]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 504,
+ "line": 512,
"character": 14
}
]
@@ -50370,13 +50410,13 @@
"groups": [
{
"title": "Properties",
- "children": [923]
+ "children": [924]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 503,
+ "line": 511,
"character": 70
}
]
@@ -50386,7 +50426,7 @@
}
},
{
- "id": 926,
+ "id": 927,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -50394,7 +50434,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 508,
+ "line": 516,
"character": 12
}
],
@@ -50404,14 +50444,14 @@
{
"type": "reflection",
"declaration": {
- "id": 927,
+ "id": 928,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 928,
+ "id": 929,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -50427,7 +50467,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 510,
+ "line": 518,
"character": 4
}
],
@@ -50437,7 +50477,7 @@
}
},
{
- "id": 929,
+ "id": 930,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50447,21 +50487,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 511,
+ "line": 519,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 930,
+ "id": 931,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 934,
+ "id": 935,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50479,7 +50519,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 523,
+ "line": 531,
"character": 8
}
],
@@ -50489,7 +50529,7 @@
}
},
{
- "id": 933,
+ "id": 934,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -50523,7 +50563,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 521,
+ "line": 529,
"character": 8
}
],
@@ -50533,7 +50573,7 @@
}
},
{
- "id": 931,
+ "id": 932,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -50551,7 +50591,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 513,
+ "line": 521,
"character": 8
}
],
@@ -50561,7 +50601,7 @@
}
},
{
- "id": 932,
+ "id": 933,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -50579,7 +50619,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 515,
+ "line": 523,
"character": 8
}
],
@@ -50592,13 +50632,13 @@
"groups": [
{
"title": "Properties",
- "children": [934, 933, 931, 932]
+ "children": [935, 934, 932, 933]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 511,
+ "line": 519,
"character": 14
}
]
@@ -50609,13 +50649,13 @@
"groups": [
{
"title": "Properties",
- "children": [928, 929]
+ "children": [929, 930]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 508,
+ "line": 516,
"character": 48
}
]
@@ -50624,14 +50664,14 @@
{
"type": "reflection",
"declaration": {
- "id": 935,
+ "id": 936,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 937,
+ "id": 938,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50641,21 +50681,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 528,
+ "line": 536,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 938,
+ "id": 939,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 941,
+ "id": 942,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50673,7 +50713,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 538,
+ "line": 546,
"character": 8
}
],
@@ -50683,7 +50723,7 @@
}
},
{
- "id": 942,
+ "id": 943,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -50701,7 +50741,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 540,
+ "line": 548,
"character": 8
}
],
@@ -50720,7 +50760,7 @@
}
},
{
- "id": 940,
+ "id": 941,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -50754,7 +50794,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 536,
+ "line": 544,
"character": 8
}
],
@@ -50764,7 +50804,7 @@
}
},
{
- "id": 939,
+ "id": 940,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -50782,7 +50822,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 530,
+ "line": 538,
"character": 8
}
],
@@ -50795,13 +50835,13 @@
"groups": [
{
"title": "Properties",
- "children": [941, 942, 940, 939]
+ "children": [942, 943, 941, 940]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 528,
+ "line": 536,
"character": 14
}
]
@@ -50809,7 +50849,7 @@
}
},
{
- "id": 936,
+ "id": 937,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -50825,7 +50865,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 527,
+ "line": 535,
"character": 4
}
],
@@ -50838,13 +50878,13 @@
"groups": [
{
"title": "Properties",
- "children": [937, 936]
+ "children": [938, 937]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 525,
+ "line": 533,
"character": 4
}
]
@@ -50854,7 +50894,7 @@
}
},
{
- "id": 1054,
+ "id": 1055,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -50862,7 +50902,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 692,
+ "line": 700,
"character": 12
}
],
@@ -50872,14 +50912,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1055,
+ "id": 1056,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1057,
+ "id": 1058,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50889,21 +50929,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 695,
+ "line": 703,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1058,
+ "id": 1059,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1060,
+ "id": 1061,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50921,7 +50961,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 699,
+ "line": 707,
"character": 8
}
],
@@ -50931,7 +50971,7 @@
}
},
{
- "id": 1059,
+ "id": 1060,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -50949,7 +50989,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 697,
+ "line": 705,
"character": 8
}
],
@@ -50959,7 +50999,7 @@
}
},
{
- "id": 1061,
+ "id": 1062,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -50977,7 +51017,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 705,
+ "line": 713,
"character": 8
}
],
@@ -50990,13 +51030,13 @@
"groups": [
{
"title": "Properties",
- "children": [1060, 1059, 1061]
+ "children": [1061, 1060, 1062]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 695,
+ "line": 703,
"character": 14
}
]
@@ -51004,7 +51044,7 @@
}
},
{
- "id": 1056,
+ "id": 1057,
"name": "providerId",
"variant": "declaration",
"kind": 1024,
@@ -51020,7 +51060,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 694,
+ "line": 702,
"character": 4
}
],
@@ -51033,13 +51073,13 @@
"groups": [
{
"title": "Properties",
- "children": [1057, 1056]
+ "children": [1058, 1057]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 692,
+ "line": 700,
"character": 28
}
]
@@ -51048,14 +51088,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1062,
+ "id": 1063,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1063,
+ "id": 1064,
"name": "domain",
"variant": "declaration",
"kind": 1024,
@@ -51071,7 +51111,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 709,
+ "line": 717,
"character": 4
}
],
@@ -51081,7 +51121,7 @@
}
},
{
- "id": 1064,
+ "id": 1065,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -51091,21 +51131,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 710,
+ "line": 718,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1065,
+ "id": 1066,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1067,
+ "id": 1068,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -51123,7 +51163,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 714,
+ "line": 722,
"character": 8
}
],
@@ -51133,7 +51173,7 @@
}
},
{
- "id": 1066,
+ "id": 1067,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -51151,7 +51191,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 712,
+ "line": 720,
"character": 8
}
],
@@ -51161,7 +51201,7 @@
}
},
{
- "id": 1068,
+ "id": 1069,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -51179,7 +51219,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 720,
+ "line": 728,
"character": 8
}
],
@@ -51192,13 +51232,13 @@
"groups": [
{
"title": "Properties",
- "children": [1067, 1066, 1068]
+ "children": [1068, 1067, 1069]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 710,
+ "line": 718,
"character": 14
}
]
@@ -51209,13 +51249,13 @@
"groups": [
{
"title": "Properties",
- "children": [1063, 1064]
+ "children": [1064, 1065]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 707,
+ "line": 715,
"character": 4
}
]
@@ -51225,7 +51265,7 @@
}
},
{
- "id": 1310,
+ "id": 1311,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -51233,21 +51273,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1129,
+ "line": 1137,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1311,
+ "id": 1312,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1312,
+ "id": 1313,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -51265,7 +51305,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1140,
+ "line": 1148,
"character": 4
}
],
@@ -51291,13 +51331,13 @@
"groups": [
{
"title": "Properties",
- "children": [1312]
+ "children": [1313]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1129,
+ "line": 1137,
"character": 22
}
]
@@ -51305,7 +51345,7 @@
}
},
{
- "id": 1362,
+ "id": 1363,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -51313,7 +51353,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1251,
+ "line": 1259,
"character": 12
}
],
@@ -51327,7 +51367,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1361,
+ "target": 1362,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -51335,7 +51375,7 @@
}
},
{
- "id": 913,
+ "id": 914,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -51343,13 +51383,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 488,
+ "line": 496,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -51366,14 +51406,14 @@
{
"type": "reflection",
"declaration": {
- "id": 914,
+ "id": 915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 915,
+ "id": 916,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -51383,21 +51423,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 489,
+ "line": 497,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 916,
+ "id": 917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 919,
+ "id": 920,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -51407,7 +51447,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 492,
+ "line": 500,
"character": 8
}
],
@@ -51417,7 +51457,7 @@
}
},
{
- "id": 920,
+ "id": 921,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -51427,7 +51467,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 493,
+ "line": 501,
"character": 8
}
],
@@ -51446,7 +51486,7 @@
}
},
{
- "id": 918,
+ "id": 919,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -51456,7 +51496,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 491,
+ "line": 499,
"character": 8
}
],
@@ -51466,7 +51506,7 @@
}
},
{
- "id": 917,
+ "id": 918,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -51476,7 +51516,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 490,
+ "line": 498,
"character": 8
}
],
@@ -51489,13 +51529,13 @@
"groups": [
{
"title": "Properties",
- "children": [919, 920, 918, 917]
+ "children": [920, 921, 919, 918]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 489,
+ "line": 497,
"character": 14
}
]
@@ -51506,13 +51546,13 @@
"groups": [
{
"title": "Properties",
- "children": [915]
+ "children": [916]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 488,
+ "line": 496,
"character": 79
}
]
@@ -51526,7 +51566,7 @@
}
},
{
- "id": 966,
+ "id": 967,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -51534,21 +51574,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 574,
+ "line": 582,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 967,
+ "id": 968,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 972,
+ "id": 973,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -51558,7 +51598,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 576,
+ "line": 584,
"character": 4
}
],
@@ -51568,14 +51608,14 @@
{
"type": "reflection",
"declaration": {
- "id": 973,
+ "id": 974,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 974,
+ "id": 975,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -51583,14 +51623,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 577,
+ "line": 585,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 975,
+ "id": 976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -51598,13 +51638,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 577,
+ "line": 585,
"character": 18
}
],
"signatures": [
{
- "id": 976,
+ "id": 977,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -51622,13 +51662,13 @@
"groups": [
{
"title": "Properties",
- "children": [974]
+ "children": [975]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 576,
+ "line": 584,
"character": 16
}
]
@@ -51642,7 +51682,7 @@
}
},
{
- "id": 968,
+ "id": 969,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -51652,14 +51692,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 575,
+ "line": 583,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 969,
+ "id": 970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -51667,20 +51707,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 575,
+ "line": 583,
"character": 13
}
],
"signatures": [
{
- "id": 970,
+ "id": 971,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 971,
+ "id": 972,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -51744,7 +51784,7 @@
}
},
{
- "id": 977,
+ "id": 978,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -51754,14 +51794,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 579,
+ "line": 587,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 978,
+ "id": 979,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -51769,20 +51809,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 579,
+ "line": 587,
"character": 18
}
],
"signatures": [
{
- "id": 979,
+ "id": 980,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 980,
+ "id": 981,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -51798,7 +51838,7 @@
}
},
{
- "id": 981,
+ "id": 982,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -51858,13 +51898,13 @@
"groups": [
{
"title": "Properties",
- "children": [972, 968, 977]
+ "children": [973, 969, 978]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 574,
+ "line": 582,
"character": 27
}
]
@@ -51872,7 +51912,7 @@
}
},
{
- "id": 982,
+ "id": 983,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -51880,7 +51920,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 581,
+ "line": 589,
"character": 12
}
],
@@ -51890,14 +51930,14 @@
{
"type": "reflection",
"declaration": {
- "id": 983,
+ "id": 984,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 984,
+ "id": 985,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -51905,7 +51945,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 582,
+ "line": 590,
"character": 4
}
],
@@ -51915,7 +51955,7 @@
}
},
{
- "id": 987,
+ "id": 988,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -51925,21 +51965,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 587,
+ "line": 595,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 988,
+ "id": 989,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 990,
+ "id": 991,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -51957,7 +51997,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 591,
+ "line": 599,
"character": 8
}
],
@@ -51967,7 +52007,7 @@
}
},
{
- "id": 991,
+ "id": 992,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -51977,7 +52017,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 592,
+ "line": 600,
"character": 8
}
],
@@ -52039,7 +52079,7 @@
}
},
{
- "id": 989,
+ "id": 990,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -52057,7 +52097,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 589,
+ "line": 597,
"character": 8
}
],
@@ -52070,13 +52110,13 @@
"groups": [
{
"title": "Properties",
- "children": [990, 991, 989]
+ "children": [991, 992, 990]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 587,
+ "line": 595,
"character": 14
}
]
@@ -52084,7 +52124,7 @@
}
},
{
- "id": 986,
+ "id": 987,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -52102,7 +52142,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 586,
+ "line": 594,
"character": 4
}
],
@@ -52112,7 +52152,7 @@
}
},
{
- "id": 985,
+ "id": 986,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -52138,13 +52178,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 584,
+ "line": 592,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 966,
+ "target": 967,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -52153,13 +52193,13 @@
"groups": [
{
"title": "Properties",
- "children": [984, 987, 986, 985]
+ "children": [985, 988, 987, 986]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 581,
+ "line": 589,
"character": 36
}
]
@@ -52168,14 +52208,14 @@
{
"type": "reflection",
"declaration": {
- "id": 992,
+ "id": 993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 993,
+ "id": 994,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -52183,7 +52223,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 595,
+ "line": 603,
"character": 4
}
],
@@ -52193,7 +52233,7 @@
}
},
{
- "id": 994,
+ "id": 995,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -52233,7 +52273,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 597,
+ "line": 605,
"character": 4
}
],
@@ -52243,7 +52283,7 @@
}
},
{
- "id": 996,
+ "id": 997,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -52253,21 +52293,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 600,
+ "line": 608,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 997,
+ "id": 998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 998,
+ "id": 999,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -52285,7 +52325,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 602,
+ "line": 610,
"character": 8
}
],
@@ -52298,13 +52338,13 @@
"groups": [
{
"title": "Properties",
- "children": [998]
+ "children": [999]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 600,
+ "line": 608,
"character": 14
}
]
@@ -52312,7 +52352,7 @@
}
},
{
- "id": 995,
+ "id": 996,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -52328,7 +52368,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 599,
+ "line": 607,
"character": 4
}
],
@@ -52346,13 +52386,13 @@
"groups": [
{
"title": "Properties",
- "children": [993, 994, 996, 995]
+ "children": [994, 995, 997, 996]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 594,
+ "line": 602,
"character": 4
}
]
@@ -52362,7 +52402,7 @@
}
},
{
- "id": 833,
+ "id": 834,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -52370,25 +52410,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 210,
+ "line": 218,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 834,
+ "id": 835,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 835,
+ "id": 836,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -52412,7 +52452,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 218,
+ "line": 226,
"character": 4
}
],
@@ -52425,13 +52465,13 @@
"groups": [
{
"title": "Properties",
- "children": [835]
+ "children": [836]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 210,
+ "line": 218,
"character": 40
}
]
@@ -52443,7 +52483,7 @@
}
},
{
- "id": 777,
+ "id": 778,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -52459,20 +52499,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 145,
+ "line": 153,
"character": 12
}
],
"typeParameters": [
{
- "id": 778,
+ "id": 779,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 779,
+ "id": 780,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -52482,7 +52522,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 778,
+ "target": 779,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -52499,14 +52539,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 778,
+ "target": 779,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 779,
+ "target": 780,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -52527,7 +52567,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L28"
}
],
"typeParameters": [
@@ -52577,7 +52617,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 154,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L154"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L154"
}
],
"type": {
@@ -52593,7 +52633,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 154,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L154"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L154"
}
],
"signatures": [
@@ -52645,7 +52685,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L61"
}
],
"type": {
@@ -52678,7 +52718,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L65"
}
],
"type": {
@@ -52707,7 +52747,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 115,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L115"
}
],
"type": {
@@ -52759,7 +52799,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 95,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L95"
}
],
"type": {
@@ -52782,7 +52822,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 95,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L95"
}
],
"signatures": [
@@ -52828,7 +52868,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 95,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L95"
}
],
"indexSignatures": [
@@ -52843,7 +52883,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 95,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L95"
}
],
"parameters": [
@@ -52901,7 +52941,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 111,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L111"
}
],
"type": {
@@ -52943,7 +52983,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 121,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L121"
}
],
"type": {
@@ -52984,7 +53024,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L73"
}
],
"type": {
@@ -53013,7 +53053,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 99,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L99"
}
],
"type": {
@@ -53054,7 +53094,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 69,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L69"
}
],
"type": {
@@ -53083,7 +53123,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 126,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L126"
}
],
"type": {
@@ -53125,7 +53165,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 107,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L107"
}
],
"type": {
@@ -53157,7 +53197,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 61,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L61"
}
]
}
@@ -53192,7 +53232,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L32"
}
],
"type": {
@@ -53217,7 +53257,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 33,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L33"
}
],
"type": {
@@ -53260,7 +53300,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L45"
}
],
"type": {
@@ -53300,7 +53340,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 58,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L58"
}
],
"type": {
@@ -53320,7 +53360,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 32,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L32"
}
]
}
@@ -53339,7 +53379,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L133"
}
],
"type": {
@@ -53380,7 +53420,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 137,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L137"
}
],
"type": {
@@ -53414,7 +53454,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 141,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L141"
}
],
"type": {
@@ -53449,7 +53489,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 133,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L133"
}
]
}
@@ -53476,12 +53516,12 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L131"
}
],
"type": {
"type": "reference",
- "target": 2118,
+ "target": 2119,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js"
}
@@ -53499,7 +53539,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L132"
}
],
"type": {
@@ -53524,14 +53564,14 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 28,
"character": 48,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L28"
}
]
}
}
},
{
- "id": 1292,
+ "id": 1293,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -53539,7 +53579,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1103,
+ "line": 1111,
"character": 12
}
],
@@ -53597,14 +53637,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1293,
+ "id": 1294,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1294,
+ "id": 1295,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -53630,7 +53670,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1111,
+ "line": 1119,
"character": 4
}
],
@@ -53643,13 +53683,13 @@
"groups": [
{
"title": "Properties",
- "children": [1294]
+ "children": [1295]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1103,
+ "line": 1111,
"character": 103
}
]
@@ -53659,7 +53699,7 @@
}
},
{
- "id": 1391,
+ "id": 1392,
"name": "UpdateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -53675,21 +53715,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1329,
+ "line": 1337,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1392,
+ "id": 1393,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1393,
+ "id": 1394,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -53707,7 +53747,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1331,
+ "line": 1339,
"character": 4
}
],
@@ -53717,7 +53757,7 @@
}
},
{
- "id": 1394,
+ "id": 1395,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -53735,7 +53775,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1333,
+ "line": 1341,
"character": 4
}
],
@@ -53745,7 +53785,7 @@
}
},
{
- "id": 1397,
+ "id": 1398,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -53763,7 +53803,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1339,
+ "line": 1347,
"character": 4
}
],
@@ -53771,14 +53811,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1363,
+ "target": 1364,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1395,
+ "id": 1396,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -53796,7 +53836,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1335,
+ "line": 1343,
"character": 4
}
],
@@ -53806,7 +53846,7 @@
}
},
{
- "id": 1396,
+ "id": 1397,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -53824,7 +53864,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1337,
+ "line": 1345,
"character": 4
}
],
@@ -53840,13 +53880,13 @@
"groups": [
{
"title": "Properties",
- "children": [1393, 1394, 1397, 1395, 1396]
+ "children": [1394, 1395, 1398, 1396, 1397]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1329,
+ "line": 1337,
"character": 38
}
]
@@ -53854,7 +53894,7 @@
}
},
{
- "id": 836,
+ "id": 837,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -53862,25 +53902,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 220,
+ "line": 228,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 837,
+ "id": 838,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 838,
+ "id": 839,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -53888,7 +53928,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 221,
+ "line": 229,
"character": 4
}
],
@@ -53903,13 +53943,13 @@
"groups": [
{
"title": "Properties",
- "children": [838]
+ "children": [839]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 220,
+ "line": 228,
"character": 56
}
]
@@ -53921,7 +53961,7 @@
}
},
{
- "id": 1018,
+ "id": 1019,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -53929,7 +53969,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 631,
+ "line": 639,
"character": 12
}
],
@@ -53938,19 +53978,19 @@
"types": [
{
"type": "reference",
- "target": 1019,
+ "target": 1020,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1027,
+ "target": 1028,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1035,
+ "target": 1036,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -53958,7 +53998,7 @@
}
},
{
- "id": 771,
+ "id": 772,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -53966,21 +54006,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 129,
+ "line": 137,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 772,
+ "id": 773,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 774,
+ "id": 775,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -53988,7 +54028,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 131,
+ "line": 139,
"character": 4
}
],
@@ -53998,7 +54038,7 @@
}
},
{
- "id": 773,
+ "id": 774,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -54006,7 +54046,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 130,
+ "line": 138,
"character": 4
}
],
@@ -54014,7 +54054,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 770,
+ "target": 771,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -54024,13 +54064,13 @@
"groups": [
{
"title": "Properties",
- "children": [774, 773]
+ "children": [775, 774]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 129,
+ "line": 137,
"character": 27
}
]
@@ -54038,7 +54078,7 @@
}
},
{
- "id": 770,
+ "id": 771,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -54046,7 +54086,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 128,
+ "line": 136,
"character": 12
}
],
@@ -54072,7 +54112,7 @@
}
},
{
- "id": 1017,
+ "id": 1018,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -54080,7 +54120,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 630,
+ "line": 638,
"character": 12
}
],
@@ -54089,13 +54129,13 @@
"types": [
{
"type": "reference",
- "target": 982,
+ "target": 983,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1000,
+ "target": 1001,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -54222,7 +54262,7 @@
}
},
{
- "id": 2246,
+ "id": 2247,
"name": "REALTIME_CHANNEL_STATES",
"variant": "declaration",
"kind": 32,
@@ -54251,7 +54291,7 @@
}
},
{
- "id": 1361,
+ "id": 1362,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -54261,7 +54301,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1250,
+ "line": 1258,
"character": 21
}
],
@@ -54317,7 +54357,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/index.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/index.ts#L41"
}
],
"signatures": [
@@ -54332,7 +54372,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 41,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/index.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/index.ts#L41"
}
],
"typeParameters": [
@@ -54380,7 +54420,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 45,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/index.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/index.ts#L45"
}
],
"type": {
@@ -54400,7 +54440,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 45,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/index.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/index.ts#L45"
}
]
}
@@ -54722,7 +54762,7 @@
]
},
{
- "id": 1489,
+ "id": 1490,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -54736,7 +54776,7 @@
],
"signatures": [
{
- "id": 1490,
+ "id": 1491,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -54750,7 +54790,7 @@
],
"parameters": [
{
- "id": 1491,
+ "id": 1492,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -54767,7 +54807,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1517,
+ "target": 1518,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -54776,7 +54816,7 @@
]
},
{
- "id": 1486,
+ "id": 1487,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -54790,7 +54830,7 @@
],
"signatures": [
{
- "id": 1487,
+ "id": 1488,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -54804,7 +54844,7 @@
],
"parameters": [
{
- "id": 1488,
+ "id": 1489,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -54821,7 +54861,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -54830,7 +54870,7 @@
]
},
{
- "id": 1495,
+ "id": 1496,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -54844,7 +54884,7 @@
],
"signatures": [
{
- "id": 1496,
+ "id": 1497,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -54858,7 +54898,7 @@
],
"parameters": [
{
- "id": 1497,
+ "id": 1498,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -54875,7 +54915,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1574,
+ "target": 1575,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -54884,7 +54924,7 @@
]
},
{
- "id": 1498,
+ "id": 1499,
"name": "isAuthPKCECodeVerifierMissingError",
"variant": "declaration",
"kind": 64,
@@ -54898,7 +54938,7 @@
],
"signatures": [
{
- "id": 1499,
+ "id": 1500,
"name": "isAuthPKCECodeVerifierMissingError",
"variant": "signature",
"kind": 4096,
@@ -54912,7 +54952,7 @@
],
"parameters": [
{
- "id": 1500,
+ "id": 1501,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -54929,7 +54969,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1628,
+ "target": 1629,
"name": "AuthPKCECodeVerifierMissingError",
"package": "@supabase/auth-js"
}
@@ -54938,7 +54978,7 @@
]
},
{
- "id": 1501,
+ "id": 1502,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -54952,7 +54992,7 @@
],
"signatures": [
{
- "id": 1502,
+ "id": 1503,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -54966,7 +55006,7 @@
],
"parameters": [
{
- "id": 1503,
+ "id": 1504,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -54983,7 +55023,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1636,
+ "target": 1637,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -54992,7 +55032,7 @@
]
},
{
- "id": 1492,
+ "id": 1493,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -55006,7 +55046,7 @@
],
"signatures": [
{
- "id": 1493,
+ "id": 1494,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -55020,7 +55060,7 @@
],
"parameters": [
{
- "id": 1494,
+ "id": 1495,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -55037,7 +55077,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1549,
+ "target": 1550,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -55046,7 +55086,7 @@
]
},
{
- "id": 1504,
+ "id": 1505,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -55060,7 +55100,7 @@
],
"signatures": [
{
- "id": 1505,
+ "id": 1506,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -55074,7 +55114,7 @@
],
"parameters": [
{
- "id": 1506,
+ "id": 1507,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -55091,7 +55131,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1646,
+ "target": 1647,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -55531,7 +55571,7 @@
]
},
{
- "id": 839,
+ "id": 840,
"name": "Session",
"variant": "reference",
"kind": 4194304,
@@ -55539,14 +55579,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 223,
+ "line": 231,
"character": 17
}
],
"target": 42
},
{
- "id": 877,
+ "id": 878,
"name": "User",
"variant": "reference",
"kind": 4194304,
@@ -55554,7 +55594,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 338,
+ "line": 346,
"character": 17
}
],
@@ -55564,47 +55604,47 @@
"groups": [
{
"title": "Enumerations",
- "children": [102, 2227, 2232, 2237, 2241]
+ "children": [102, 2228, 2233, 2238, 2242]
},
{
"title": "Classes",
"children": [
- 1517, 1507, 1574, 1565, 1658, 1557, 1628, 1601, 1636, 1549, 1527, 1646, 1537, 95,
- 85, 80, 90, 293, 379, 711, 57, 1684, 2004, 1667, 118, 2247
+ 1518, 1508, 1575, 1566, 1659, 1558, 1629, 1602, 1637, 1550, 1528, 1647, 1538, 95,
+ 85, 80, 90, 293, 379, 711, 57, 1685, 2005, 1668, 118, 2248
]
},
{
"title": "Interfaces",
"children": [
- 884, 842, 1463, 42, 15, 1091, 1285, 1411, 1154, 1354, 1334, 897, 869, 878, 845, 874,
- 1027, 1019, 1035, 2263, 2313
+ 885, 843, 1464, 42, 15, 1092, 1286, 1412, 1155, 1355, 1335, 898, 870, 879, 846, 875,
+ 1028, 1020, 1036, 2264, 2314
]
},
{
"title": "Type Aliases",
"children": [
- 840, 729, 728, 1148, 943, 1275, 1272, 1282, 1279, 1139, 1143, 1138, 1140, 1141,
- 1142, 1317, 1134, 1316, 1318, 1149, 1144, 1135, 1133, 1126, 1453, 1454, 1460, 1461,
- 806, 797, 801, 811, 815, 1298, 1383, 291, 1039, 999, 1000, 858, 857, 69, 1085, 1075,
- 1094, 1099, 1095, 1106, 1080, 1069, 739, 1295, 1319, 730, 1125, 1124, 1122, 1121,
- 1123, 1107, 1314, 1313, 1315, 1120, 1108, 1119, 1112, 1111, 1113, 1117, 1038, 1434,
- 1440, 1367, 1363, 1399, 1366, 1398, 1364, 1365, 1455, 1450, 820, 1306, 1299, 55, 51,
- 53, 775, 727, 286, 290, 284, 1989, 2003, 2118, 2149, 2156, 2163, 2187, 2168, 2178,
- 2197, 2207, 2217, 2226, 780, 789, 1324, 1040, 907, 956, 944, 921, 926, 1054, 1310,
- 1362, 913, 966, 982, 833, 777, 248, 1292, 1391, 836, 1018, 771, 770, 1017
+ 841, 729, 728, 1149, 944, 1276, 1273, 1283, 1280, 1140, 1144, 1139, 1141, 1142,
+ 1143, 1318, 1135, 1317, 1319, 1150, 1145, 1136, 1134, 1127, 1454, 1455, 1461, 1462,
+ 807, 798, 802, 812, 816, 1299, 1384, 291, 1040, 1000, 1001, 859, 858, 69, 1086,
+ 1076, 1095, 1100, 1096, 1107, 1081, 1070, 739, 1296, 1320, 730, 1126, 1125, 1123,
+ 1122, 1124, 1108, 1315, 1314, 1316, 1121, 1109, 1120, 1113, 1112, 1114, 1118, 1039,
+ 1435, 1441, 1368, 1364, 1400, 1367, 1399, 1365, 1366, 1456, 1451, 821, 1307, 1300,
+ 55, 51, 53, 776, 727, 286, 290, 284, 1990, 2004, 2119, 2150, 2157, 2164, 2188, 2169,
+ 2179, 2198, 2208, 2218, 2227, 781, 790, 1325, 1041, 908, 957, 945, 922, 927, 1055,
+ 1311, 1363, 914, 967, 983, 834, 778, 248, 1293, 1392, 837, 1019, 772, 771, 1018
]
},
{
"title": "Variables",
- "children": [701, 702, 716, 2246, 1361]
+ "children": [701, 702, 716, 2247, 1362]
},
{
"title": "Functions",
- "children": [2, 1489, 1486, 1495, 1498, 1501, 1492, 1504, 703, 719]
+ "children": [2, 1490, 1487, 1496, 1499, 1502, 1493, 1505, 703, 719]
},
{
"title": "References",
- "children": [839, 877]
+ "children": [840, 878]
}
],
"sources": [
@@ -55612,7 +55652,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/index.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/index.ts#L1"
}
]
}
@@ -55803,7 +55843,119 @@
},
{
"kind": "text",
- "text": " API.\n\n### Bun\n\nWe support Bun runtime environments. Bun provides native fetch support and is compatible with Node.js APIs. Since Bun does not follow a structured release schedule like Node.js or Deno, we support current stable versions of Bun and may drop support for older versions in minor releases without considering it a breaking change.\n\n### React Native\n\nWe support React Native environments with fetch polyfills provided by the framework. Since React Native does not follow a structured release schedule, we support current stable versions and may drop support for older versions in minor releases without considering it a breaking change.\n\n### Cloudflare Workers\n\nWe support Cloudflare Workers runtime environments. Cloudflare Workers provides native fetch support. Since Cloudflare Workers does not follow a structured release schedule, we support current stable versions and may drop support for older versions in minor releases without considering it a breaking change.\n\n### Important Notes\n\n- **Experimental features**: Features marked as experimental may be removed or changed without notice\n\n## Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
+ "text": " API.\n\n### Bun\n\nWe support Bun runtime environments. Bun provides native fetch support and is compatible with Node.js APIs. Since Bun does not follow a structured release schedule like Node.js or Deno, we support current stable versions of Bun and may drop support for older versions in minor releases without considering it a breaking change.\n\n### React Native\n\nWe support React Native environments with fetch polyfills provided by the framework. Since React Native does not follow a structured release schedule, we support current stable versions and may drop support for older versions in minor releases without considering it a breaking change.\n\n### Cloudflare Workers\n\nWe support Cloudflare Workers runtime environments. Cloudflare Workers provides native fetch support. Since Cloudflare Workers does not follow a structured release schedule, we support current stable versions and may drop support for older versions in minor releases without considering it a breaking change.\n\n### Important Notes\n\n- **Experimental features**: Features marked as experimental may be removed or changed without notice\n\n## Known Build Warnings\n\n### "
+ },
+ {
+ "kind": "code",
+ "text": "`UNUSED_EXTERNAL_IMPORT`"
+ },
+ {
+ "kind": "text",
+ "text": " in Vite / Rollup / Nuxt\n\nWhen bundling your app, you may see warnings like:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```\n\"PostgrestError\" is imported from external module \"@supabase/postgrest-js\" but never used in \"...supabase-js/dist/index.mjs\".\n\"FunctionRegion\", \"FunctionsError\", \"FunctionsFetchError\", \"FunctionsHttpError\" and \"FunctionsRelayError\" are imported from external module \"@supabase/functions-js\" but never used in \"...\".\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**This is a false positive — your bundle is fine.** Here is why it happens:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "`@supabase/supabase-js`"
+ },
+ {
+ "kind": "text",
+ "text": " re-exports "
+ },
+ {
+ "kind": "code",
+ "text": "`PostgrestError`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`FunctionsError`"
+ },
+ {
+ "kind": "text",
+ "text": ", and related symbols so you can import them directly from "
+ },
+ {
+ "kind": "code",
+ "text": "`@supabase/supabase-js`"
+ },
+ {
+ "kind": "text",
+ "text": ". However, our build tool merges all imports from the same package into a single import statement in the built output:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\n// dist/index.mjs (simplified)\nimport { PostgrestClient, PostgrestError } from '@supabase/postgrest-js'\n// ^ used internally ^ re-exported for you\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nYour bundler checks which names from that import are used _in the code body_, and flags "
+ },
+ {
+ "kind": "code",
+ "text": "`PostgrestError`"
+ },
+ {
+ "kind": "text",
+ "text": " as unused because it only appears in an "
+ },
+ {
+ "kind": "code",
+ "text": "`export`"
+ },
+ {
+ "kind": "text",
+ "text": " statement — not called or assigned. The export itself is the usage, but downstream bundlers don't track this correctly. This is a known Rollup/Vite limitation with re-exported external imports.\n\n**Nothing is broken.** Tree-shaking and bundle size are unaffected.\n\nTo suppress the warning:\n\n**Vite / Rollup ("
+ },
+ {
+ "kind": "code",
+ "text": "`vite.config.js`"
+ },
+ {
+ "kind": "text",
+ "text": " or "
+ },
+ {
+ "kind": "code",
+ "text": "`rollup.config.js`"
+ },
+ {
+ "kind": "text",
+ "text": "):**\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nexport default {\n build: {\n rollupOptions: {\n onwarn(warning, warn) {\n if (warning.code === 'UNUSED_EXTERNAL_IMPORT' && warning.exporter?.includes('@supabase/'))\n return\n warn(warning)\n },\n },\n },\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Nuxt ("
+ },
+ {
+ "kind": "code",
+ "text": "`nuxt.config.ts`"
+ },
+ {
+ "kind": "text",
+ "text": "):**\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```ts\nexport default defineNuxtConfig({\n vite: {\n build: {\n rollupOptions: {\n onwarn(warning, warn) {\n if (warning.code === 'UNUSED_EXTERNAL_IMPORT' && warning.exporter?.includes('@supabase/'))\n return\n warn(warning)\n },\n },\n },\n },\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n## Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
},
{
"kind": "relative-link",
@@ -58547,515 +58699,515 @@
},
"770": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "WeakPasswordReasons"
+ "qualifiedName": "__type.skipAutoInitialize"
},
"771": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "WeakPassword"
+ "qualifiedName": "WeakPasswordReasons"
},
"772": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WeakPassword"
},
"773": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.reasons"
+ "qualifiedName": "__type"
},
"774": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.reasons"
},
"775": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Prettify"
+ "qualifiedName": "__type.message"
},
"776": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "Prettify"
},
"777": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "StrictOmit"
+ "qualifiedName": "T"
},
"778": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "StrictOmit"
},
"779": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "K"
+ "qualifiedName": "T"
},
"780": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "RequestResult"
+ "qualifiedName": "K"
},
"781": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RequestResult"
},
"782": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"783": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"784": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"785": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"786": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"787": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.error"
},
"788": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "ErrorType"
+ "qualifiedName": "T"
},
"789": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "RequestResultSafeDestructure"
+ "qualifiedName": "ErrorType"
},
"790": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RequestResultSafeDestructure"
},
"791": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"792": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"793": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"794": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"795": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"796": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.error"
},
"797": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthResponse"
+ "qualifiedName": "T"
},
"798": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthResponse"
},
"799": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"800": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"801": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthResponsePassword"
+ "qualifiedName": "__type.session"
},
"802": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthResponsePassword"
},
"803": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"804": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"805": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.weak_password"
+ "qualifiedName": "__type.session"
},
"806": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOtpResponse"
+ "qualifiedName": "__type.weak_password"
},
"807": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOtpResponse"
},
"808": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"809": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"810": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.messageId"
+ "qualifiedName": "__type.session"
},
"811": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthTokenResponse"
+ "qualifiedName": "__type.messageId"
},
"812": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthTokenResponse"
},
"813": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"814": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"815": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthTokenResponsePassword"
+ "qualifiedName": "__type.session"
},
"816": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthTokenResponsePassword"
},
"817": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"818": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"819": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.weakPassword"
+ "qualifiedName": "__type.session"
},
"820": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthResponse"
+ "qualifiedName": "__type.weakPassword"
},
"821": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthResponse"
},
"822": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"823": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"824": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"825": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.provider"
},
"826": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.url"
},
"827": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"828": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"829": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"830": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"831": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.provider"
},
"832": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.url"
},
"833": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SSOResponse"
+ "qualifiedName": "__type.error"
},
"834": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SSOResponse"
},
"835": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"836": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserResponse"
+ "qualifiedName": "__type.url"
},
"837": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UserResponse"
},
"838": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"839": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Session"
+ "qualifiedName": "__type.user"
},
"840": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AMRMethod"
+ "qualifiedName": "Session"
},
"841": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AMRMethod"
},
"842": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AMREntry"
+ "qualifiedName": "__type"
},
"843": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AMREntry.method"
+ "qualifiedName": "AMREntry"
},
"844": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AMREntry.timestamp"
+ "qualifiedName": "AMREntry.method"
},
"845": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserIdentity"
+ "qualifiedName": "AMREntry.timestamp"
},
"846": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserIdentity.id"
+ "qualifiedName": "UserIdentity"
},
"847": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserIdentity.user_id"
+ "qualifiedName": "UserIdentity.id"
},
"848": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserIdentity.identity_data"
+ "qualifiedName": "UserIdentity.user_id"
},
"849": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UserIdentity.identity_data"
},
"850": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "851": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "852": {
+ "853": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "853": {
+ "854": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "854": {
+ "855": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "855": {
+ "856": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "856": {
+ "857": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "857": {
+ "858": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "858": {
+ "859": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Factor"
},
- "859": {
+ "860": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "860": {
+ "861": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "861": {
+ "862": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "862": {
+ "863": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "863": {
+ "864": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "864": {
+ "865": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "865": {
+ "866": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "866": {
+ "867": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.last_challenged_at"
},
- "867": {
+ "868": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Type"
},
- "868": {
+ "869": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Status"
},
- "869": {
+ "870": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "870": {
+ "871": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.provider"
},
- "871": {
+ "872": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.providers"
},
- "872": {
+ "873": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.__index"
},
- "874": {
+ "875": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserMetadata"
},
- "875": {
+ "876": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserMetadata.__index"
},
- "877": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "User"
- },
"878": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes"
+ "qualifiedName": "User"
},
"879": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.email"
+ "qualifiedName": "UserAttributes"
},
"880": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.phone"
+ "qualifiedName": "UserAttributes.email"
},
"881": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.password"
+ "qualifiedName": "UserAttributes.phone"
},
"882": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.nonce"
+ "qualifiedName": "UserAttributes.password"
},
"883": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.data"
+ "qualifiedName": "UserAttributes.nonce"
},
"884": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes"
+ "qualifiedName": "UserAttributes.data"
},
"885": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.user_metadata"
+ "qualifiedName": "AdminUserAttributes"
},
"886": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.app_metadata"
+ "qualifiedName": "AdminUserAttributes.user_metadata"
},
"887": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.email_confirm"
+ "qualifiedName": "AdminUserAttributes.app_metadata"
},
"888": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.phone_confirm"
+ "qualifiedName": "AdminUserAttributes.email_confirm"
},
"889": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.ban_duration"
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
},
"890": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.role"
+ "qualifiedName": "AdminUserAttributes.ban_duration"
},
"891": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.password_hash"
+ "qualifiedName": "AdminUserAttributes.role"
},
"892": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.id"
+ "qualifiedName": "AdminUserAttributes.password_hash"
},
"893": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "nonce"
+ "qualifiedName": "AdminUserAttributes.id"
},
"894": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "email"
+ "qualifiedName": "nonce"
},
"895": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "password"
+ "qualifiedName": "email"
},
"896": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "password"
},
"897": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription"
+ "qualifiedName": "phone"
},
"898": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.id"
+ "qualifiedName": "Subscription"
},
"899": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.callback"
+ "qualifiedName": "Subscription.id"
},
"900": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.callback"
},
"901": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -59063,19 +59215,19 @@
},
"902": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type"
},
"903": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "session"
+ "qualifiedName": "event"
},
"904": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.unsubscribe"
+ "qualifiedName": "session"
},
"905": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.unsubscribe"
},
"906": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -59083,251 +59235,251 @@
},
"907": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInAnonymouslyCredentials"
+ "qualifiedName": "__type"
},
"908": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInAnonymouslyCredentials"
},
"909": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"910": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"911": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"912": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"913": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignUpWithPasswordCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"914": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignUpWithPasswordCredentials"
},
"915": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"916": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"917": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"918": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.emailRedirectTo"
},
"919": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"920": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.captchaToken"
},
"921": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordCredentials"
+ "qualifiedName": "__type.channel"
},
"922": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithPasswordCredentials"
},
"923": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"924": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"925": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"926": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordlessCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"927": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithPasswordlessCredentials"
},
"928": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"929": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"930": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"931": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"932": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type.emailRedirectTo"
},
"933": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.shouldCreateUser"
},
"934": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"935": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"936": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type"
},
"937": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"938": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"939": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type"
},
"940": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.shouldCreateUser"
},
"941": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"942": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.captchaToken"
},
"943": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthFlowType"
+ "qualifiedName": "__type.channel"
},
"944": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithOAuthCredentials"
+ "qualifiedName": "AuthFlowType"
},
"945": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithOAuthCredentials"
},
"946": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"947": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.provider"
},
"948": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"949": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"950": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type.redirectTo"
},
"951": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.queryParams"
+ "qualifiedName": "__type.scopes"
},
"952": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.queryParams"
},
"953": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "955": {
+ "954": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.__index"
},
"956": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithIdTokenCredentials"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"957": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithIdTokenCredentials"
},
"958": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"959": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.provider"
},
"960": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token"
+ "qualifiedName": "__type"
},
"961": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type.token"
},
"962": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nonce"
+ "qualifiedName": "__type.access_token"
},
"963": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.nonce"
},
"964": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"965": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"966": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SolanaWallet"
+ "qualifiedName": "__type.captchaToken"
},
"967": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWallet"
},
"968": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signIn"
+ "qualifiedName": "__type"
},
"969": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signIn"
},
"970": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -59335,23 +59487,23 @@
},
"971": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "inputs"
+ "qualifiedName": "__type"
},
"972": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "inputs"
},
"973": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"974": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.toBase58"
+ "qualifiedName": "__type"
},
"975": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.toBase58"
},
"976": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -59359,11 +59511,11 @@
},
"977": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signMessage"
+ "qualifiedName": "__type"
},
"978": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signMessage"
},
"979": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -59371,707 +59523,707 @@
},
"980": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "message"
+ "qualifiedName": "__type"
},
"981": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "encoding"
+ "qualifiedName": "message"
},
"982": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SolanaWeb3Credentials"
+ "qualifiedName": "encoding"
},
"983": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWeb3Credentials"
},
"984": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"985": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.chain"
},
"986": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.wallet"
},
"987": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.statement"
},
"988": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"989": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"990": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.url"
},
"991": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signInWithSolana"
+ "qualifiedName": "__type.captchaToken"
},
"992": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signInWithSolana"
},
"993": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"994": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.chain"
},
"995": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.message"
},
"996": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.signature"
},
"997": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"998": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"999": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EthereumWallet"
+ "qualifiedName": "__type.captchaToken"
},
"1000": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EthereumWeb3Credentials"
+ "qualifiedName": "EthereumWallet"
},
"1001": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EthereumWeb3Credentials"
},
"1002": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1003": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.chain"
},
"1004": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.wallet"
},
"1005": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.statement"
},
"1006": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1007": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"1008": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.url"
},
"1009": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signInWithEthereum"
+ "qualifiedName": "__type.captchaToken"
},
"1010": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signInWithEthereum"
},
"1011": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1012": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.chain"
},
"1013": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.message"
},
"1014": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.signature"
},
"1015": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1016": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1017": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Web3Credentials"
+ "qualifiedName": "__type.captchaToken"
},
"1018": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyOtpParams"
+ "qualifiedName": "Web3Credentials"
},
"1019": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams"
+ "qualifiedName": "VerifyOtpParams"
},
"1020": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.phone"
+ "qualifiedName": "VerifyMobileOtpParams"
},
"1021": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.token"
+ "qualifiedName": "VerifyMobileOtpParams.phone"
},
"1022": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.type"
+ "qualifiedName": "VerifyMobileOtpParams.token"
},
"1023": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.options"
+ "qualifiedName": "VerifyMobileOtpParams.type"
},
"1024": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyMobileOtpParams.options"
},
"1025": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1026": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1027": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams"
+ "qualifiedName": "__type.captchaToken"
},
"1028": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.email"
+ "qualifiedName": "VerifyEmailOtpParams"
},
"1029": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.token"
+ "qualifiedName": "VerifyEmailOtpParams.email"
},
"1030": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.type"
+ "qualifiedName": "VerifyEmailOtpParams.token"
},
"1031": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.options"
+ "qualifiedName": "VerifyEmailOtpParams.type"
},
"1032": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyEmailOtpParams.options"
},
"1033": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1034": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1035": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams"
+ "qualifiedName": "__type.captchaToken"
},
"1036": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.token_hash"
+ "qualifiedName": "VerifyTokenHashParams"
},
"1037": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.type"
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
},
"1038": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MobileOtpType"
+ "qualifiedName": "VerifyTokenHashParams.type"
},
"1039": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EmailOtpType"
+ "qualifiedName": "MobileOtpType"
},
"1040": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "ResendParams"
+ "qualifiedName": "EmailOtpType"
},
"1041": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "ResendParams"
},
"1042": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1043": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1044": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1045": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1046": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"1047": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.emailRedirectTo"
},
"1048": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1049": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1050": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.type"
},
"1051": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"1052": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1053": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1054": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithSSO"
+ "qualifiedName": "__type.captchaToken"
},
"1055": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithSSO"
},
"1056": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.providerId"
+ "qualifiedName": "__type"
},
"1057": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.providerId"
},
"1058": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1059": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1060": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1061": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.captchaToken"
},
"1062": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1063": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.domain"
+ "qualifiedName": "__type"
},
"1064": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.domain"
},
"1065": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1066": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1067": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1068": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.captchaToken"
},
"1069": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateSignupLinkParams"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1070": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateSignupLinkParams"
},
"1071": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1072": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1073": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.password"
+ "qualifiedName": "__type.email"
},
"1074": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.password"
},
"1075": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ "qualifiedName": "__type.options"
},
"1076": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
},
"1077": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1078": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1079": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1080": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateRecoveryLinkParams"
+ "qualifiedName": "__type.options"
},
"1081": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateRecoveryLinkParams"
},
"1082": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1083": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1084": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1085": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateEmailChangeLinkParams"
+ "qualifiedName": "__type.options"
},
"1086": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateEmailChangeLinkParams"
},
"1087": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1088": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1089": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.newEmail"
+ "qualifiedName": "__type.email"
},
"1090": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.newEmail"
},
"1091": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions"
+ "qualifiedName": "__type.options"
},
"1092": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.data"
+ "qualifiedName": "GenerateLinkOptions"
},
"1093": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.redirectTo"
+ "qualifiedName": "GenerateLinkOptions.data"
},
"1094": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkParams"
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
},
"1095": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkResponse"
+ "qualifiedName": "GenerateLinkParams"
},
"1096": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkResponse"
},
"1097": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.properties"
+ "qualifiedName": "__type"
},
"1098": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.properties"
},
"1099": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkProperties"
+ "qualifiedName": "__type.user"
},
"1100": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkProperties"
},
"1101": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.action_link"
+ "qualifiedName": "__type"
},
"1102": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email_otp"
+ "qualifiedName": "__type.action_link"
},
"1103": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.hashed_token"
+ "qualifiedName": "__type.email_otp"
},
"1104": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_to"
+ "qualifiedName": "__type.hashed_token"
},
"1105": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.verification_type"
+ "qualifiedName": "__type.redirect_to"
},
"1106": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkType"
+ "qualifiedName": "__type.verification_type"
},
"1107": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAEnrollParams"
+ "qualifiedName": "GenerateLinkType"
},
"1108": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAUnenrollParams"
+ "qualifiedName": "MFAEnrollParams"
},
"1109": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAUnenrollParams"
},
"1110": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.factorId"
+ "qualifiedName": "__type"
},
"1111": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyTOTPParams"
+ "qualifiedName": "__type.factorId"
},
"1112": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyPhoneParams"
+ "qualifiedName": "MFAVerifyTOTPParams"
},
"1113": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFields"
+ "qualifiedName": "MFAVerifyPhoneParams"
},
"1114": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
},
"1115": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.webauthn"
+ "qualifiedName": "__type"
},
"1116": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.webauthn"
},
"1117": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParams"
+ "qualifiedName": "T"
},
"1118": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "MFAVerifyWebauthnParams"
},
"1119": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyParams"
+ "qualifiedName": "T"
},
"1120": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFATOTPChannel"
+ "qualifiedName": "MFAVerifyParams"
},
"1121": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeTOTPParams"
+ "qualifiedName": "MFATOTPChannel"
},
"1122": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengePhoneParams"
+ "qualifiedName": "MFAChallengeTOTPParams"
},
"1123": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeWebauthnParams"
+ "qualifiedName": "MFAChallengePhoneParams"
},
"1124": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeParams"
+ "qualifiedName": "MFAChallengeWebauthnParams"
},
"1125": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeAndVerifyParams"
+ "qualifiedName": "MFAChallengeParams"
},
"1126": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponseData"
+ "qualifiedName": "MFAChallengeAndVerifyParams"
},
"1127": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAVerifyResponseData"
},
"1128": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type"
},
"1129": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token_type"
+ "qualifiedName": "__type.access_token"
},
"1130": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.expires_in"
+ "qualifiedName": "__type.token_type"
},
"1131": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.refresh_token"
+ "qualifiedName": "__type.expires_in"
},
"1132": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.refresh_token"
},
"1133": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponse"
+ "qualifiedName": "__type.user"
},
"1134": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollResponse"
+ "qualifiedName": "AuthMFAVerifyResponse"
},
"1135": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAUnenrollResponse"
+ "qualifiedName": "AuthMFAEnrollResponse"
},
"1136": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAUnenrollResponse"
},
"1137": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1138": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ "qualifiedName": "__type.id"
},
"1139": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengePhoneResponse"
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
},
"1140": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
},
"1141": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
"1142": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
"1143": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
"1144": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAListFactorsResponse"
+ "qualifiedName": "AuthMFAChallengeResponse"
},
"1145": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAListFactorsResponse"
},
"1146": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.all"
+ "qualifiedName": "__type"
},
"1147": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.all"
},
"1148": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthenticatorAssuranceLevels"
+ "qualifiedName": "T"
},
"1149": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ "qualifiedName": "AuthenticatorAssuranceLevels"
},
"1150": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
"1151": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.currentLevel"
+ "qualifiedName": "__type"
},
"1152": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nextLevel"
+ "qualifiedName": "__type.currentLevel"
},
"1153": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.currentAuthenticationMethods"
+ "qualifiedName": "__type.nextLevel"
},
"1154": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi"
+ "qualifiedName": "__type.currentAuthenticationMethods"
},
"1155": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "GoTrueMFAApi"
},
"1156": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60079,79 +60231,79 @@
},
"1157": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1158": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1159": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1160": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1161": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "issuer"
+ "qualifiedName": "friendlyName"
},
"1162": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "issuer"
},
"1163": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1164": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1165": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1166": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1167": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "friendlyName"
},
"1168": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "phone"
},
"1169": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1170": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1171": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1172": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1173": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1174": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1175": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "params"
},
"1176": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60159,243 +60311,243 @@
},
"1177": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1178": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1179": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1180": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1181": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1182": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1183": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1184": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1185": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1186": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1187": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1188": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1189": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "expires_at"
},
"1190": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1191": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1192": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1193": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1194": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "factorId"
},
"1195": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "channel"
},
"1196": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1197": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1198": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1199": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1200": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1201": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1202": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1203": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1204": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "expires_at"
},
"1205": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1206": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1207": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1208": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1209": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "factorId"
},
"1210": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1211": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.rpId"
+ "qualifiedName": "__type"
},
"1212": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.rpOrigins"
+ "qualifiedName": "__type.rpId"
},
"1213": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.rpOrigins"
},
"1214": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1215": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1216": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1217": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1218": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1219": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1220": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1221": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1222": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "expires_at"
},
"1223": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1224": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1225": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type.type"
},
"1226": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.credential_options"
},
"1227": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"1228": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"1229": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1230": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type.type"
},
"1231": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.credential_options"
},
"1232": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"1233": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type.publicKey"
},
"1234": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1235": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1236": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "params"
},
"1237": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60403,83 +60555,83 @@
},
"1238": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1239": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1240": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1241": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1242": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1243": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1244": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1245": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1246": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1247": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1248": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1249": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1250": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1251": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1252": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1253": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1254": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "challengeId"
},
"1255": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "webauthn"
},
"1256": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1257": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "params"
},
"1258": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60487,11 +60639,11 @@
},
"1259": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1260": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "params"
},
"1261": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60499,23 +60651,23 @@
},
"1262": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1263": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1264": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1265": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "factorId"
},
"1266": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "code"
},
"1267": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60523,7 +60675,7 @@
},
"1268": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1269": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60531,71 +60683,71 @@
},
"1270": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "jwt"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1271": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.webauthn"
+ "qualifiedName": "jwt"
},
"1272": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ "qualifiedName": "GoTrueMFAApi.webauthn"
},
"1273": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
"1274": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1275": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ "qualifiedName": "__type.id"
},
"1276": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
"1277": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1278": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type.id"
},
"1279": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ "qualifiedName": "__type.userId"
},
"1280": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
},
"1281": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.factors"
+ "qualifiedName": "__type"
},
"1282": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsParams"
+ "qualifiedName": "__type.factors"
},
"1283": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
},
"1284": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type"
},
"1285": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi"
+ "qualifiedName": "__type.userId"
},
"1286": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "GoTrueAdminMFAApi"
},
"1287": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60603,11 +60755,11 @@
},
"1288": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1289": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "params"
},
"1290": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60615,479 +60767,479 @@
},
"1291": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1292": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SupportedStorage"
+ "qualifiedName": "params"
},
"1293": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SupportedStorage"
},
"1294": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.isServer"
+ "qualifiedName": "__type"
},
"1295": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "InitializeResult"
+ "qualifiedName": "__type.isServer"
},
"1296": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "InitializeResult"
},
"1297": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type"
},
"1298": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "CallRefreshTokenResult"
+ "qualifiedName": "__type.error"
},
"1299": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Pagination"
+ "qualifiedName": "CallRefreshTokenResult"
},
"1300": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Pagination"
},
"1301": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nextPage"
+ "qualifiedName": "__type"
},
"1302": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.lastPage"
+ "qualifiedName": "__type.nextPage"
},
"1303": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.total"
+ "qualifiedName": "__type.lastPage"
},
"1304": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.total"
+ },
+ "1305": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "1306": {
+ "1307": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "PageParams"
},
- "1307": {
+ "1308": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1308": {
+ "1309": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.page"
},
- "1309": {
+ "1310": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.perPage"
},
- "1310": {
+ "1311": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "SignOut"
},
- "1311": {
+ "1312": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1312": {
+ "1313": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.scope"
},
- "1313": {
+ "1314": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollTOTPParams"
},
- "1314": {
+ "1315": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollPhoneParams"
},
- "1315": {
+ "1316": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollWebauthnParams"
},
- "1316": {
+ "1317": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollTOTPResponse"
},
- "1317": {
+ "1318": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollPhoneResponse"
},
- "1318": {
+ "1319": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
- "1319": {
+ "1320": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtHeader"
},
- "1320": {
+ "1321": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1321": {
+ "1322": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.alg"
},
- "1322": {
+ "1323": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.kid"
},
- "1323": {
+ "1324": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.typ"
},
- "1324": {
+ "1325": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "RequiredClaims"
},
- "1325": {
+ "1326": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1326": {
+ "1327": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1327": {
+ "1328": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1328": {
+ "1329": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1329": {
+ "1330": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1330": {
+ "1331": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1331": {
+ "1332": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1332": {
+ "1333": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1333": {
+ "1334": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1334": {
+ "1335": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload"
},
- "1335": {
+ "1336": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.email"
},
- "1336": {
+ "1337": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.phone"
},
- "1337": {
+ "1338": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.is_anonymous"
},
- "1338": {
+ "1339": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.jti"
},
- "1339": {
+ "1340": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.nbf"
},
- "1340": {
+ "1341": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.app_metadata"
},
- "1341": {
+ "1342": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.user_metadata"
},
- "1342": {
+ "1343": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.amr"
},
- "1343": {
+ "1344": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.ref"
},
- "1344": {
+ "1345": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1345": {
+ "1346": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1346": {
+ "1347": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1347": {
+ "1348": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1348": {
+ "1349": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1349": {
+ "1350": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1350": {
+ "1351": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1351": {
+ "1352": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1352": {
+ "1353": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.__index"
},
- "1354": {
+ "1355": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK"
},
- "1355": {
+ "1356": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.kty"
},
- "1356": {
+ "1357": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.key_ops"
},
- "1357": {
+ "1358": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.alg"
},
- "1358": {
+ "1359": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.kid"
},
- "1359": {
+ "1360": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.__index"
},
- "1361": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SIGN_OUT_SCOPES"
- },
"1362": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignOutScope"
+ "qualifiedName": "SIGN_OUT_SCOPES"
},
"1363": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientGrantType"
+ "qualifiedName": "SignOutScope"
},
"1364": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientResponseType"
+ "qualifiedName": "OAuthClientGrantType"
},
"1365": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientType"
+ "qualifiedName": "OAuthClientResponseType"
},
"1366": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientRegistrationType"
+ "qualifiedName": "OAuthClientType"
},
"1367": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClient"
+ "qualifiedName": "OAuthClientRegistrationType"
},
"1368": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClient"
},
"1369": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "__type"
},
"1370": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.client_id"
},
"1371": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_secret"
+ "qualifiedName": "__type.client_name"
},
"1372": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "__type.client_secret"
},
"1373": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "__type.client_type"
},
"1374": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "__type.token_endpoint_auth_method"
},
"1375": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.registration_type"
},
"1376": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_uri"
},
"1377": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.logo_uri"
},
"1378": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1379": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.grant_types"
},
"1380": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.response_types"
},
"1381": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "__type.scope"
},
"1382": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "__type.created_at"
},
"1383": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "__type.updated_at"
},
"1384": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "CreateOAuthClientParams"
},
"1385": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1386": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.client_name"
},
"1387": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
"1388": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1389": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.grant_types"
},
"1390": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.response_types"
},
"1391": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UpdateOAuthClientParams"
+ "qualifiedName": "__type.scope"
},
"1392": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UpdateOAuthClientParams"
},
"1393": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1394": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.client_name"
},
"1395": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_uri"
},
"1396": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.logo_uri"
},
"1397": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1398": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "__type.grant_types"
},
"1399": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "OAuthClientResponse"
},
"1400": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientListResponse"
},
"1401": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1402": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1403": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1404": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.clients"
},
"1405": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.aud"
},
"1406": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"1407": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1408": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1409": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1410": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.clients"
},
"1411": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "__type.error"
},
"1412": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "GoTrueAdminOAuthApi"
},
"1413": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61095,11 +61247,11 @@
},
"1414": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1415": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "params"
},
"1416": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61107,11 +61259,11 @@
},
"1417": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1418": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "params"
},
"1419": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61119,11 +61271,11 @@
},
"1420": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1421": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "clientId"
},
"1422": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61131,15 +61283,15 @@
},
"1423": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1424": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "clientId"
},
"1425": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "params"
},
"1426": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61147,23 +61299,23 @@
},
"1427": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1428": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "clientId"
},
"1429": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1430": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"1431": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type.error"
},
"1432": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61171,131 +61323,131 @@
},
"1433": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1434": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationClient"
+ "qualifiedName": "clientId"
},
"1435": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationClient"
},
"1436": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1437": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.name"
+ "qualifiedName": "__type.id"
},
"1438": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.uri"
+ "qualifiedName": "__type.name"
},
"1439": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.uri"
},
"1440": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationDetails"
+ "qualifiedName": "__type.logo_uri"
},
"1441": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
"1442": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.authorization_id"
+ "qualifiedName": "__type"
},
"1443": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uri"
+ "qualifiedName": "__type.authorization_id"
},
"1444": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type.redirect_uri"
},
"1445": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.client"
},
"1446": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.user"
},
"1447": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1448": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.id"
},
"1449": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.email"
},
"1450": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthRedirect"
+ "qualifiedName": "__type.scope"
},
"1451": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthRedirect"
},
"1452": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_url"
+ "qualifiedName": "__type"
},
"1453": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ "qualifiedName": "__type.redirect_url"
},
"1454": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthConsentResponse"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
"1455": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthGrant"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
"1456": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthGrant"
},
"1457": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type"
},
"1458": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type.client"
},
"1459": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.granted_at"
+ "qualifiedName": "__type.scopes"
},
"1460": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthGrantsResponse"
+ "qualifiedName": "__type.granted_at"
},
"1461": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthRevokeGrantResponse"
+ "qualifiedName": "AuthOAuthGrantsResponse"
},
"1462": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthRevokeGrantResponse"
},
"1463": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi"
+ "qualifiedName": "__type"
},
"1464": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "AuthOAuthServerApi"
},
"1465": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61303,11 +61455,11 @@
},
"1466": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
"1467": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "authorizationId"
},
"1468": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61315,23 +61467,23 @@
},
"1469": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
"1470": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1471": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1472": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1473": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1474": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61339,23 +61491,23 @@
},
"1475": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
},
"1476": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1477": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1478": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1479": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.listGrants"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1480": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61363,7 +61515,7 @@
},
"1481": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
},
"1482": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61371,19 +61523,19 @@
},
"1483": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
},
"1484": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1485": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clientId"
+ "qualifiedName": "__type"
},
"1486": {
- "sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthError"
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.clientId"
},
"1487": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61391,11 +61543,11 @@
},
"1488": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthError"
},
"1489": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthApiError"
+ "qualifiedName": "error"
},
"1490": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61403,11 +61555,11 @@
},
"1491": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthApiError"
},
"1492": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthSessionMissingError"
+ "qualifiedName": "error"
},
"1493": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61415,11 +61567,11 @@
},
"1494": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthSessionMissingError"
},
"1495": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthImplicitGrantRedirectError"
+ "qualifiedName": "error"
},
"1496": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61427,11 +61579,11 @@
},
"1497": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthImplicitGrantRedirectError"
},
"1498": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthPKCECodeVerifierMissingError"
+ "qualifiedName": "error"
},
"1499": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61439,11 +61591,11 @@
},
"1500": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthPKCECodeVerifierMissingError"
},
"1501": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthRetryableFetchError"
+ "qualifiedName": "error"
},
"1502": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61451,11 +61603,11 @@
},
"1503": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthRetryableFetchError"
},
"1504": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthWeakPasswordError"
+ "qualifiedName": "error"
},
"1505": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61463,835 +61615,835 @@
},
"1506": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthWeakPasswordError"
},
"1507": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "AuthError"
+ "qualifiedName": "error"
},
"1508": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "AuthError.__constructor"
+ "qualifiedName": "AuthError"
},
"1509": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "AuthError"
+ "qualifiedName": "AuthError.__constructor"
},
"1510": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "message"
+ "qualifiedName": "AuthError"
},
"1511": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "status"
+ "qualifiedName": "message"
},
"1512": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "code"
+ "qualifiedName": "status"
},
"1513": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "AuthError.code"
+ "qualifiedName": "code"
},
"1514": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1515": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1515": {
+ "1516": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1516": {
+ "1517": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1517": {
+ "1518": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1518": {
+ "1519": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1519": {
+ "1520": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1520": {
+ "1521": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1521": {
+ "1522": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1522": {
+ "1523": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1523": {
+ "1524": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1524": {
+ "1525": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1525": {
+ "1526": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1526": {
+ "1527": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1527": {
+ "1528": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1528": {
+ "1529": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1529": {
+ "1530": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1530": {
+ "1531": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1531": {
+ "1532": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1532": {
+ "1533": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1533": {
+ "1534": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1534": {
+ "1535": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1535": {
+ "1536": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1536": {
+ "1537": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1537": {
+ "1538": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1538": {
+ "1539": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1539": {
+ "1540": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1540": {
+ "1541": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1541": {
+ "1542": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "name"
},
- "1542": {
+ "1543": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1543": {
+ "1544": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1544": {
+ "1545": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1545": {
+ "1546": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1546": {
+ "1547": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1547": {
+ "1548": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1548": {
+ "1549": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1549": {
+ "1550": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1550": {
+ "1551": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1551": {
+ "1552": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1552": {
+ "1553": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1553": {
+ "1554": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1554": {
+ "1555": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1555": {
+ "1556": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1556": {
+ "1557": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1557": {
+ "1558": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1558": {
+ "1559": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1559": {
+ "1560": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1560": {
+ "1561": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1561": {
+ "1562": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1562": {
+ "1563": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1563": {
+ "1564": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1564": {
+ "1565": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1565": {
+ "1566": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1566": {
+ "1567": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1567": {
+ "1568": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1568": {
+ "1569": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1569": {
+ "1570": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1570": {
+ "1571": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1571": {
+ "1572": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1572": {
+ "1573": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1573": {
+ "1574": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1574": {
+ "1575": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1575": {
+ "1576": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1576": {
+ "1577": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1577": {
+ "1578": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1578": {
+ "1579": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "details"
},
- "1579": {
+ "1580": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1580": {
+ "1581": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1581": {
+ "1582": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1582": {
+ "1583": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1583": {
+ "1584": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1584": {
+ "1585": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1585": {
+ "1586": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1586": {
+ "1587": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1587": {
+ "1588": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1588": {
+ "1589": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1589": {
+ "1590": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.name"
},
- "1590": {
+ "1591": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.message"
},
- "1591": {
+ "1592": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.status"
},
- "1592": {
+ "1593": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.details"
},
- "1593": {
+ "1594": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1594": {
+ "1595": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1595": {
+ "1596": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1596": {
+ "1597": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1597": {
+ "1598": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1598": {
+ "1599": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1599": {
+ "1600": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1600": {
+ "1601": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1601": {
+ "1602": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1602": {
+ "1603": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1603": {
+ "1604": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1604": {
+ "1605": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1605": {
+ "1606": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "details"
},
- "1606": {
+ "1607": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1607": {
+ "1608": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1608": {
+ "1609": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1609": {
+ "1610": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1610": {
+ "1611": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1611": {
+ "1612": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1612": {
+ "1613": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1613": {
+ "1614": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1614": {
+ "1615": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1615": {
+ "1616": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1616": {
+ "1617": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.name"
},
- "1617": {
+ "1618": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.message"
},
- "1618": {
+ "1619": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.status"
},
- "1619": {
+ "1620": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.details"
},
- "1620": {
+ "1621": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1621": {
+ "1622": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1622": {
+ "1623": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1623": {
+ "1624": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1624": {
+ "1625": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1625": {
+ "1626": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1626": {
+ "1627": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1627": {
+ "1628": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1628": {
+ "1629": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError"
},
- "1629": {
+ "1630": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError.__constructor"
},
- "1630": {
+ "1631": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError"
},
- "1631": {
+ "1632": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1632": {
+ "1633": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1633": {
+ "1634": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1634": {
+ "1635": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1635": {
+ "1636": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1636": {
+ "1637": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1637": {
+ "1638": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1638": {
+ "1639": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1639": {
+ "1640": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1640": {
+ "1641": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1641": {
+ "1642": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1642": {
+ "1643": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1643": {
+ "1644": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1644": {
+ "1645": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1645": {
+ "1646": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1646": {
+ "1647": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1647": {
+ "1648": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1648": {
+ "1649": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1649": {
+ "1650": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1650": {
+ "1651": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1651": {
+ "1652": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1652": {
+ "1653": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1653": {
+ "1654": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1654": {
+ "1655": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1655": {
+ "1656": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1656": {
+ "1657": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1657": {
+ "1658": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1658": {
+ "1659": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1659": {
+ "1660": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1660": {
+ "1661": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1661": {
+ "1662": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1662": {
+ "1663": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1663": {
+ "1664": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1664": {
+ "1665": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1665": {
+ "1666": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1666": {
+ "1667": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1667": {
+ "1668": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default"
},
- "1668": {
+ "1669": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.__constructor"
},
- "1669": {
+ "1670": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default"
},
- "1670": {
+ "1671": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "channel"
},
- "1671": {
+ "1672": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "opts"
},
- "1672": {
+ "1673": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.channel"
},
- "1673": {
+ "1674": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.state"
},
- "1674": {
+ "1675": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.pendingDiffs"
},
- "1675": {
+ "1676": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.joinRef"
},
- "1676": {
+ "1677": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.enabled"
},
- "1677": {
+ "1678": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.caller"
},
- "1678": {
+ "1679": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1679": {
+ "1680": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onJoin"
},
- "1680": {
+ "1681": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onLeave"
},
- "1681": {
+ "1682": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onSync"
},
- "1682": {
+ "1683": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1683": {
+ "1684": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1684": {
+ "1685": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default"
},
- "1685": {
+ "1686": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.__constructor"
},
- "1686": {
+ "1687": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default"
},
- "1687": {
+ "1688": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "topic"
},
- "1688": {
+ "1689": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "params"
},
- "1689": {
+ "1690": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "socket"
},
- "1690": {
+ "1691": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.topic"
},
- "1691": {
+ "1692": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.params"
},
- "1692": {
+ "1693": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.socket"
},
- "1693": {
+ "1694": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.bindings"
},
- "1694": {
+ "1695": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1695": {
+ "1696": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1697": {
+ "1698": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1698": {
+ "1699": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1699": {
+ "1700": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.filter"
},
- "1700": {
+ "1701": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1701": {
+ "1702": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1703": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.callback"
- },
"1704": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.callback"
},
"1705": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.timeout"
+ "qualifiedName": "__type.id"
},
"1706": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.state"
+ "qualifiedName": "default.timeout"
},
"1707": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.joinedOnce"
+ "qualifiedName": "default.state"
},
"1708": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.joinPush"
+ "qualifiedName": "default.joinedOnce"
},
"1709": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.rejoinTimer"
+ "qualifiedName": "default.joinPush"
},
"1710": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.pushBuffer"
+ "qualifiedName": "default.rejoinTimer"
},
"1711": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.presence"
+ "qualifiedName": "default.pushBuffer"
},
"1712": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.broadcastEndpointURL"
+ "qualifiedName": "default.presence"
},
"1713": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.subTopic"
+ "qualifiedName": "default.broadcastEndpointURL"
},
"1714": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.private"
+ "qualifiedName": "default.subTopic"
},
"1715": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.subscribe"
+ "qualifiedName": "default.private"
},
"1716": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62299,11 +62451,11 @@
},
"1717": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "default.subscribe"
},
"1718": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1719": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62311,19 +62463,19 @@
},
"1720": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "status"
+ "qualifiedName": "__type"
},
"1721": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "err"
+ "qualifiedName": "status"
},
"1722": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "timeout"
+ "qualifiedName": "err"
},
"1723": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.presenceState"
+ "qualifiedName": "timeout"
},
"1724": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62331,103 +62483,103 @@
},
"1725": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.presenceState"
},
"1726": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1727": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1728": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1729": {
+ "1730": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1730": {
+ "1731": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.track"
},
- "1731": {
+ "1732": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.track"
},
- "1732": {
+ "1733": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1733": {
+ "1734": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1734": {
+ "1735": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1736": {
+ "1737": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1737": {
+ "1738": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1738": {
+ "1739": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1740": {
+ "1741": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.untrack"
},
- "1741": {
+ "1742": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.untrack"
},
- "1742": {
+ "1743": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1743": {
+ "1744": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1744": {
+ "1745": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1746": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
- },
- "1747": {
+ "1747": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
"1748": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "default.on"
},
"1749": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1750": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1751": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1752": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1753": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1754": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62435,43 +62587,43 @@
},
"1755": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type"
},
"1756": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1757": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1758": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1760": {
+ "1759": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1761": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1762": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1763": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1764": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1765": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1766": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62479,47 +62631,47 @@
},
"1767": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1768": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1769": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1770": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1771": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1773": {
+ "1772": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1774": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1775": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1776": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1777": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1778": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1779": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62527,39 +62679,39 @@
},
"1780": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1781": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1782": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1783": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1784": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1786": {
+ "1785": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1787": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1788": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "filter"
},
"1789": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1790": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62567,39 +62719,39 @@
},
"1791": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1792": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1793": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1794": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1795": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1797": {
+ "1796": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1798": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1799": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "filter"
},
"1800": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1801": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62607,39 +62759,39 @@
},
"1802": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1803": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1804": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1805": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1806": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1808": {
+ "1807": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1809": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1810": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "filter"
},
"1811": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1812": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62647,39 +62799,39 @@
},
"1813": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1814": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1815": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1816": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1817": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1819": {
+ "1818": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1820": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1821": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "filter"
},
"1822": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1823": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62687,39 +62839,39 @@
},
"1824": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1825": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1826": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1827": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1828": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1830": {
+ "1829": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1831": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1832": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "filter"
},
"1833": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1834": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62727,35 +62879,35 @@
},
"1835": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1836": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1837": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "default.on"
},
"1838": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1839": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1840": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1841": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1842": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1843": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62763,79 +62915,79 @@
},
"1844": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1845": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1846": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1847": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1848": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.meta"
+ "qualifiedName": "__type.event"
},
"1849": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.meta"
},
"1850": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.replayed"
+ "qualifiedName": "__type"
},
"1851": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.replayed"
},
"1852": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.id"
},
- "1854": {
+ "1853": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.__index"
},
"1855": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1856": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1857": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1859": {
+ "1858": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1860": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1861": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1862": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1863": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1864": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1865": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62843,71 +62995,71 @@
},
"1866": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1867": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1868": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1869": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1870": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.meta"
+ "qualifiedName": "__type.event"
},
"1871": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.meta"
},
"1872": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.replayed"
+ "qualifiedName": "__type"
},
"1873": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.replayed"
},
"1874": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.id"
},
"1875": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.payload"
},
"1876": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1877": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "T"
},
"1878": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1879": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1880": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1881": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1882": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1883": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62915,63 +63067,63 @@
},
"1884": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1885": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1886": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1887": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1888": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.event"
},
"1889": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.payload"
},
"1890": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1891": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1892": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1894": {
+ "1893": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1895": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1896": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1897": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1898": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1899": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1900": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62979,63 +63131,63 @@
},
"1901": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1902": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1903": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1904": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1905": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.event"
},
"1906": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.payload"
},
"1907": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1908": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1909": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1911": {
+ "1910": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1912": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1913": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1914": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1915": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1916": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1917": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63043,63 +63195,63 @@
},
"1918": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1919": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1920": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1921": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1922": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.event"
},
"1923": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.payload"
},
"1924": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1925": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1926": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1928": {
+ "1927": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1929": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1930": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1931": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1932": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1933": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1934": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63107,59 +63259,59 @@
},
"1935": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1936": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1937": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1938": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1939": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.event"
},
"1940": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.payload"
},
"1941": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1942": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1943": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1944": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1945": {
+ "1946": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1946": {
+ "1947": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1947": {
+ "1948": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1948": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
- },
"1949": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1950": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63167,11 +63319,11 @@
},
"1951": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1952": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.httpSend"
+ "qualifiedName": "payload"
},
"1953": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63179,51 +63331,51 @@
},
"1954": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "event"
+ "qualifiedName": "default.httpSend"
},
"1955": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "event"
},
"1956": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "opts"
+ "qualifiedName": "payload"
},
"1957": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "opts"
},
"1958": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.timeout"
+ "qualifiedName": "__type"
},
"1959": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.timeout"
},
"1960": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.success"
+ "qualifiedName": "__type"
},
"1961": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.success"
},
"1962": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.success"
+ "qualifiedName": "__type"
},
"1963": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.status"
+ "qualifiedName": "__type.success"
},
"1964": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.status"
},
"1965": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.send"
+ "qualifiedName": "__type.error"
},
"1966": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63231,43 +63383,43 @@
},
"1967": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "args"
+ "qualifiedName": "default.send"
},
"1968": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "args"
},
"1969": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1970": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1971": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.event"
},
"1972": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.payload"
},
- "1974": {
+ "1973": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "opts"
+ "qualifiedName": "__type.__index"
},
"1975": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "opts"
},
"1976": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1978": {
+ "1977": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.updateJoinPayload"
+ "qualifiedName": "__type.__index"
},
"1979": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63275,19 +63427,19 @@
},
"1980": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "default.updateJoinPayload"
},
"1981": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1982": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1984": {
+ "1983": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.unsubscribe"
+ "qualifiedName": "__type.__index"
},
"1985": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63295,11 +63447,11 @@
},
"1986": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "timeout"
+ "qualifiedName": "default.unsubscribe"
},
"1987": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.teardown"
+ "qualifiedName": "timeout"
},
"1988": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63307,275 +63459,275 @@
},
"1989": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "RealtimeChannelOptions"
+ "qualifiedName": "default.teardown"
},
"1990": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RealtimeChannelOptions"
},
"1991": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.config"
+ "qualifiedName": "__type"
},
"1992": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.config"
},
"1993": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.broadcast"
+ "qualifiedName": "__type"
},
"1994": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.broadcast"
},
"1995": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.self"
+ "qualifiedName": "__type"
},
"1996": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.ack"
+ "qualifiedName": "__type.self"
},
"1997": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.replay"
+ "qualifiedName": "__type.ack"
},
"1998": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.presence"
+ "qualifiedName": "__type.replay"
},
"1999": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.presence"
},
"2000": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.key"
+ "qualifiedName": "__type"
},
"2001": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.enabled"
+ "qualifiedName": "__type.key"
},
"2002": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.private"
+ "qualifiedName": "__type.enabled"
},
"2003": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "RealtimeChannelSendResponse"
+ "qualifiedName": "__type.private"
},
"2004": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeChannelSendResponse"
+ },
+ "2005": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "2005": {
+ "2006": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.__constructor"
},
- "2006": {
+ "2007": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "2007": {
+ "2008": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "endPoint"
},
- "2008": {
+ "2009": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "options"
},
- "2009": {
+ "2010": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.accessTokenValue"
},
- "2010": {
+ "2011": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.apiKey"
},
- "2012": {
+ "2013": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.channels"
},
- "2013": {
+ "2014": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.endPoint"
},
- "2014": {
+ "2015": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.httpEndpoint"
},
- "2015": {
+ "2016": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.headers"
},
- "2016": {
+ "2017": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2017": {
+ "2018": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2019": {
+ "2020": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.params"
},
- "2020": {
+ "2021": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2021": {
+ "2022": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2023": {
+ "2024": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.timeout"
},
- "2024": {
+ "2025": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.transport"
},
- "2025": {
+ "2026": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatIntervalMs"
},
- "2026": {
+ "2027": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatTimer"
},
- "2027": {
+ "2028": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.pendingHeartbeatRef"
},
- "2028": {
+ "2029": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatCallback"
},
- "2029": {
+ "2030": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2030": {
+ "2031": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2031": {
+ "2032": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "2032": {
+ "2033": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "latency"
},
- "2033": {
+ "2034": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.ref"
},
- "2034": {
+ "2035": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.reconnectTimer"
},
- "2035": {
+ "2036": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.vsn"
},
- "2036": {
+ "2037": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.logger"
},
- "2037": {
+ "2038": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.logLevel"
},
- "2038": {
+ "2039": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.encode"
},
- "2039": {
+ "2040": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.decode"
},
- "2040": {
+ "2041": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.reconnectAfterMs"
},
- "2041": {
+ "2042": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.conn"
},
- "2042": {
+ "2043": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.sendBuffer"
},
- "2043": {
+ "2044": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.serializer"
},
- "2044": {
+ "2045": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.stateChangeCallbacks"
},
- "2045": {
+ "2046": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2046": {
+ "2047": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.open"
},
- "2047": {
+ "2048": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.close"
},
- "2048": {
+ "2049": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.error"
},
- "2049": {
+ "2050": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.message"
},
- "2050": {
+ "2051": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.fetch"
},
- "2051": {
+ "2052": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "2052": {
+ "2053": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "2053": {
+ "2054": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "input"
},
- "2054": {
+ "2055": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "init"
},
- "2055": {
+ "2056": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
- "2056": {
+ "2057": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
- "2057": {
+ "2058": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
- "2058": {
- "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.accessToken"
- },
"2059": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "default.accessToken"
},
"2060": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63583,19 +63735,19 @@
},
"2061": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.worker"
+ "qualifiedName": "__type"
},
"2062": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.workerUrl"
+ "qualifiedName": "default.worker"
},
"2063": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.workerRef"
+ "qualifiedName": "default.workerUrl"
},
- "2068": {
+ "2064": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.connect"
+ "qualifiedName": "default.workerRef"
},
"2069": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63603,7 +63755,7 @@
},
"2070": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.endpointURL"
+ "qualifiedName": "default.connect"
},
"2071": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63611,7 +63763,7 @@
},
"2072": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.disconnect"
+ "qualifiedName": "default.endpointURL"
},
"2073": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63619,15 +63771,15 @@
},
"2074": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "code"
+ "qualifiedName": "default.disconnect"
},
"2075": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "reason"
+ "qualifiedName": "code"
},
"2076": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.getChannels"
+ "qualifiedName": "reason"
},
"2077": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63635,7 +63787,7 @@
},
"2078": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.removeChannel"
+ "qualifiedName": "default.getChannels"
},
"2079": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63643,11 +63795,11 @@
},
"2080": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "default.removeChannel"
},
"2081": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.removeAllChannels"
+ "qualifiedName": "channel"
},
"2082": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63655,7 +63807,7 @@
},
"2083": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.log"
+ "qualifiedName": "default.removeAllChannels"
},
"2084": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63663,19 +63815,19 @@
},
"2085": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "kind"
+ "qualifiedName": "default.log"
},
"2086": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "msg"
+ "qualifiedName": "kind"
},
"2087": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "data"
+ "qualifiedName": "msg"
},
"2088": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.connectionState"
+ "qualifiedName": "data"
},
"2089": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63683,7 +63835,7 @@
},
"2090": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.isConnected"
+ "qualifiedName": "default.connectionState"
},
"2091": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63691,7 +63843,7 @@
},
"2092": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.isConnecting"
+ "qualifiedName": "default.isConnected"
},
"2093": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63699,7 +63851,7 @@
},
"2094": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.isDisconnecting"
+ "qualifiedName": "default.isConnecting"
},
"2095": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63707,7 +63859,7 @@
},
"2096": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.channel"
+ "qualifiedName": "default.isDisconnecting"
},
"2097": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63715,15 +63867,15 @@
},
"2098": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "topic"
+ "qualifiedName": "default.channel"
},
"2099": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "params"
+ "qualifiedName": "topic"
},
"2100": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.push"
+ "qualifiedName": "params"
},
"2101": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63731,11 +63883,11 @@
},
"2102": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "data"
+ "qualifiedName": "default.push"
},
"2103": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.setAuth"
+ "qualifiedName": "data"
},
"2104": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63743,11 +63895,11 @@
},
"2105": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "token"
+ "qualifiedName": "default.setAuth"
},
"2106": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.sendHeartbeat"
+ "qualifiedName": "token"
},
"2107": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63755,7 +63907,7 @@
},
"2108": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.onHeartbeat"
+ "qualifiedName": "default.sendHeartbeat"
},
"2109": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63763,11 +63915,11 @@
},
"2110": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "default.onHeartbeat"
},
"2111": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"2112": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63775,47 +63927,47 @@
},
"2113": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "status"
+ "qualifiedName": "__type"
},
"2114": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "latency"
+ "qualifiedName": "status"
},
"2115": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.flushSendBuffer"
+ "qualifiedName": "latency"
},
"2116": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.flushSendBuffer"
},
- "2118": {
+ "2117": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "RealtimeClientOptions"
+ "qualifiedName": "default.flushSendBuffer"
},
"2119": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RealtimeClientOptions"
},
"2120": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.transport"
+ "qualifiedName": "__type"
},
"2121": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.timeout"
+ "qualifiedName": "__type.transport"
},
"2122": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.heartbeatIntervalMs"
+ "qualifiedName": "__type.timeout"
},
"2123": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.heartbeatCallback"
+ "qualifiedName": "__type.heartbeatIntervalMs"
},
"2124": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.heartbeatCallback"
},
"2125": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63823,463 +63975,463 @@
},
"2126": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "status"
+ "qualifiedName": "__type"
},
"2127": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "latency"
+ "qualifiedName": "status"
},
"2128": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.vsn"
+ "qualifiedName": "latency"
},
"2129": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.logger"
+ "qualifiedName": "__type.vsn"
},
"2130": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.encode"
+ "qualifiedName": "__type.logger"
},
"2131": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.decode"
+ "qualifiedName": "__type.encode"
},
"2132": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.reconnectAfterMs"
+ "qualifiedName": "__type.decode"
},
"2133": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.headers"
+ "qualifiedName": "__type.reconnectAfterMs"
},
"2134": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.headers"
},
"2135": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
+ },
+ "2136": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2137": {
+ "2138": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.params"
},
- "2138": {
+ "2139": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2139": {
+ "2140": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2141": {
+ "2142": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.log_level"
},
- "2142": {
+ "2143": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.logLevel"
},
- "2143": {
+ "2144": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.fetch"
},
- "2144": {
+ "2145": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.worker"
},
- "2145": {
+ "2146": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.workerUrl"
},
- "2146": {
+ "2147": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.accessToken"
},
- "2147": {
+ "2148": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2148": {
+ "2149": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2149": {
+ "2150": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeMessage"
},
- "2150": {
+ "2151": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2151": {
+ "2152": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.topic"
},
- "2152": {
+ "2153": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.event"
},
- "2153": {
+ "2154": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.payload"
},
- "2154": {
+ "2155": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.ref"
},
- "2155": {
+ "2156": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.join_ref"
},
- "2156": {
+ "2157": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesFilter"
},
- "2157": {
+ "2158": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2158": {
+ "2159": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "2159": {
+ "2160": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.schema"
},
- "2160": {
+ "2161": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.table"
},
- "2161": {
+ "2162": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.filter"
},
- "2162": {
+ "2163": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2163": {
+ "2164": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesPayload"
},
- "2164": {
+ "2165": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2165": {
+ "2166": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2166": {
+ "2167": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2168": {
+ "2169": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresInsertPayload"
},
- "2169": {
+ "2170": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2170": {
+ "2171": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2171": {
+ "2172": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2172": {
+ "2173": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2173": {
+ "2174": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2174": {
+ "2175": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2175": {
+ "2176": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2176": {
+ "2177": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2178": {
+ "2179": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresUpdatePayload"
},
- "2179": {
+ "2180": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2180": {
+ "2181": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2181": {
+ "2182": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2182": {
+ "2183": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2183": {
+ "2184": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2184": {
+ "2185": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2185": {
+ "2186": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2187": {
+ "2188": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresDeletePayload"
},
- "2188": {
+ "2189": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2189": {
+ "2190": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2190": {
+ "2191": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2191": {
+ "2192": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2192": {
+ "2193": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2193": {
+ "2194": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2194": {
+ "2195": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2195": {
+ "2196": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2197": {
+ "2198": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceJoinPayload"
},
- "2198": {
+ "2199": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2199": {
+ "2200": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "2200": {
+ "2201": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "2201": {
+ "2202": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "2202": {
+ "2203": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.newPresences"
},
- "2203": {
+ "2204": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2204": {
+ "2205": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2205": {
+ "2206": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2207": {
+ "2208": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceLeavePayload"
},
- "2208": {
+ "2209": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2209": {
+ "2210": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "2210": {
+ "2211": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "2211": {
+ "2212": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "2212": {
+ "2213": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.leftPresences"
},
- "2213": {
+ "2214": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2214": {
+ "2215": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2215": {
+ "2216": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2217": {
+ "2218": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceState"
},
- "2218": {
+ "2219": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2219": {
+ "2220": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2221": {
+ "2222": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2222": {
+ "2223": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2223": {
+ "2224": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2225": {
+ "2226": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2226": {
+ "2227": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeRemoveChannelResponse"
},
- "2227": {
+ "2228": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES"
},
- "2228": {
+ "2229": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST"
},
- "2229": {
+ "2230": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE"
},
- "2230": {
+ "2231": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES"
},
- "2231": {
+ "2232": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM"
},
- "2232": {
+ "2233": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT"
},
- "2233": {
+ "2234": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
},
- "2234": {
+ "2235": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
},
- "2235": {
+ "2236": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
},
- "2236": {
+ "2237": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
},
- "2237": {
+ "2238": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS"
},
- "2238": {
+ "2239": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC"
},
- "2239": {
+ "2240": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN"
},
- "2240": {
+ "2241": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE"
},
- "2241": {
+ "2242": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES"
},
- "2242": {
+ "2243": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED"
},
- "2243": {
+ "2244": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT"
},
- "2244": {
+ "2245": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED"
},
- "2245": {
+ "2246": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR"
},
- "2246": {
+ "2247": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_CHANNEL_STATES"
},
- "2247": {
+ "2248": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory"
},
- "2249": {
- "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketFactory.getWebSocketConstructor"
- },
"2250": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
"2251": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "__type"
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
"2252": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
@@ -64287,15 +64439,15 @@
},
"2253": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "url"
+ "qualifiedName": "__type"
},
"2254": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "protocols"
+ "qualifiedName": "url"
},
"2255": {
- "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketFactory.createWebSocket"
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "protocols"
},
"2256": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64303,55 +64455,55 @@
},
"2257": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "url"
+ "qualifiedName": "WebSocketFactory.createWebSocket"
},
"2258": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "protocols"
+ "qualifiedName": "url"
},
"2259": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketFactory.isWebSocketSupported"
+ "qualifiedName": "protocols"
},
"2260": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "2263": {
+ "2261": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike"
+ "qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
"2264": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.CONNECTING"
+ "qualifiedName": "WebSocketLike"
},
"2265": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.OPEN"
+ "qualifiedName": "WebSocketLike.CONNECTING"
},
"2266": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.CLOSING"
+ "qualifiedName": "WebSocketLike.OPEN"
},
"2267": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.CLOSED"
+ "qualifiedName": "WebSocketLike.CLOSING"
},
"2268": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.readyState"
+ "qualifiedName": "WebSocketLike.CLOSED"
},
"2269": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.url"
+ "qualifiedName": "WebSocketLike.readyState"
},
"2270": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.protocol"
+ "qualifiedName": "WebSocketLike.url"
},
"2271": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.close"
+ "qualifiedName": "WebSocketLike.protocol"
},
"2272": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64359,15 +64511,15 @@
},
"2273": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "code"
+ "qualifiedName": "WebSocketLike.close"
},
"2274": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "reason"
+ "qualifiedName": "code"
},
"2275": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.send"
+ "qualifiedName": "reason"
},
"2276": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64375,15 +64527,15 @@
},
"2277": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "data"
+ "qualifiedName": "WebSocketLike.send"
},
"2278": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.onopen"
+ "qualifiedName": "data"
},
"2279": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WebSocketLike.onopen"
},
"2280": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64391,19 +64543,19 @@
},
"2281": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "this"
+ "qualifiedName": "__type"
},
"2282": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "ev"
+ "qualifiedName": "this"
},
"2283": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.onmessage"
+ "qualifiedName": "ev"
},
"2284": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WebSocketLike.onmessage"
},
"2285": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64411,19 +64563,19 @@
},
"2286": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "this"
+ "qualifiedName": "__type"
},
"2287": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "ev"
+ "qualifiedName": "this"
},
"2288": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.onclose"
+ "qualifiedName": "ev"
},
"2289": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WebSocketLike.onclose"
},
"2290": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64431,19 +64583,19 @@
},
"2291": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "this"
+ "qualifiedName": "__type"
},
"2292": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "ev"
+ "qualifiedName": "this"
},
"2293": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.onerror"
+ "qualifiedName": "ev"
},
"2294": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WebSocketLike.onerror"
},
"2295": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64451,15 +64603,15 @@
},
"2296": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "this"
+ "qualifiedName": "__type"
},
"2297": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "ev"
+ "qualifiedName": "this"
},
"2298": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.addEventListener"
+ "qualifiedName": "ev"
},
"2299": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64467,15 +64619,15 @@
},
"2300": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "type"
+ "qualifiedName": "WebSocketLike.addEventListener"
},
"2301": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "listener"
+ "qualifiedName": "type"
},
"2302": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.removeEventListener"
+ "qualifiedName": "listener"
},
"2303": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64483,31 +64635,31 @@
},
"2304": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "type"
+ "qualifiedName": "WebSocketLike.removeEventListener"
},
"2305": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "listener"
+ "qualifiedName": "type"
},
"2306": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.binaryType"
+ "qualifiedName": "listener"
},
"2307": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.bufferedAmount"
+ "qualifiedName": "WebSocketLike.binaryType"
},
"2308": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.extensions"
+ "qualifiedName": "WebSocketLike.bufferedAmount"
},
"2309": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.dispatchEvent"
+ "qualifiedName": "WebSocketLike.extensions"
},
"2310": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WebSocketLike.dispatchEvent"
},
"2311": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64515,11 +64667,11 @@
},
"2312": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type"
},
"2313": {
- "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "WebSocketLikeConstructor"
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "event"
},
"2314": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -64531,13 +64683,17 @@
},
"2316": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "address"
+ "qualifiedName": "WebSocketLikeConstructor"
},
"2317": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "subprotocols"
+ "qualifiedName": "address"
},
"2318": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "subprotocols"
+ },
+ "2319": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor.__index"
}
@@ -64563,7 +64719,7 @@
"flags": {},
"children": [
{
- "id": 1538,
+ "id": 1539,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -64589,7 +64745,7 @@
},
"children": [
{
- "id": 1539,
+ "id": 1540,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -64599,12 +64755,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"signatures": [
{
- "id": 1540,
+ "id": 1541,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -64614,12 +64770,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"parameters": [
{
- "id": 1541,
+ "id": 1542,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -64630,7 +64786,7 @@
}
},
{
- "id": 1542,
+ "id": 1543,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -64641,7 +64797,7 @@
}
},
{
- "id": 1543,
+ "id": 1544,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -64663,25 +64819,25 @@
],
"type": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1530,
+ "target": 1531,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1529,
+ "target": 1530,
"name": "AuthError.constructor"
}
},
{
- "id": 1545,
+ "id": 1546,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -64710,7 +64866,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -64739,7 +64895,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1546,
+ "id": 1547,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -64752,12 +64908,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1534,
+ "target": 1535,
"name": "AuthError.code"
}
},
{
- "id": 1544,
+ "id": 1545,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -64775,7 +64931,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L51"
}
],
"type": {
@@ -64784,7 +64940,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1536,
+ "target": 1537,
"name": "AuthError.status"
}
}
@@ -64792,11 +64948,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1539]
+ "children": [1540]
},
{
"title": "Properties",
- "children": [1545, 1544]
+ "children": [1546, 1545]
}
],
"sources": [
@@ -64804,20 +64960,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L50"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1528,
+ "id": 1529,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -64843,7 +64999,7 @@
},
"children": [
{
- "id": 1529,
+ "id": 1530,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -64853,12 +65009,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"signatures": [
{
- "id": 1530,
+ "id": 1531,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -64868,12 +65024,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"parameters": [
{
- "id": 1531,
+ "id": 1532,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -64884,7 +65040,7 @@
}
},
{
- "id": 1532,
+ "id": 1533,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -64897,7 +65053,7 @@
}
},
{
- "id": 1533,
+ "id": 1534,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -64912,7 +65068,7 @@
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -64930,7 +65086,7 @@
}
},
{
- "id": 1534,
+ "id": 1535,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -64957,7 +65113,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -64986,7 +65142,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1535,
+ "id": 1536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -64999,7 +65155,7 @@
}
},
{
- "id": 1536,
+ "id": 1537,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -65017,7 +65173,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -65038,11 +65194,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1529]
+ "children": [1530]
},
{
"title": "Properties",
- "children": [1534, 1536]
+ "children": [1535, 1537]
}
],
"sources": [
@@ -65050,7 +65206,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L14"
}
],
"extendedTypes": [
@@ -65067,23 +65223,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError"
}
]
},
{
- "id": 1595,
+ "id": 1596,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -65109,7 +65265,7 @@
},
"children": [
{
- "id": 1596,
+ "id": 1597,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -65119,12 +65275,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"signatures": [
{
- "id": 1597,
+ "id": 1598,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -65134,12 +65290,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"parameters": [
{
- "id": 1598,
+ "id": 1599,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -65150,7 +65306,7 @@
}
},
{
- "id": 1599,
+ "id": 1600,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -65165,14 +65321,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1600,
+ "id": 1601,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1602,
+ "id": 1603,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -65182,7 +65338,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -65191,7 +65347,7 @@
}
},
{
- "id": 1601,
+ "id": 1602,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -65201,7 +65357,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -65213,7 +65369,7 @@
"groups": [
{
"title": "Properties",
- "children": [1602, 1601]
+ "children": [1603, 1602]
}
],
"sources": [
@@ -65221,7 +65377,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
]
}
@@ -65233,25 +65389,25 @@
],
"type": {
"type": "reference",
- "target": 1595,
+ "target": 1596,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1619,
+ "id": 1620,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -65280,7 +65436,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -65309,7 +65465,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1620,
+ "id": 1621,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -65322,12 +65478,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1603,
+ "id": 1604,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -65337,7 +65493,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -65350,14 +65506,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1604,
+ "id": 1605,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1606,
+ "id": 1607,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -65367,7 +65523,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -65376,7 +65532,7 @@
}
},
{
- "id": 1605,
+ "id": 1606,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -65386,7 +65542,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -65398,7 +65554,7 @@
"groups": [
{
"title": "Properties",
- "children": [1606, 1605]
+ "children": [1607, 1606]
}
],
"sources": [
@@ -65406,7 +65562,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -65416,7 +65572,7 @@
"defaultValue": "null"
},
{
- "id": 1617,
+ "id": 1618,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -65428,7 +65584,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -65437,12 +65593,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1618,
+ "id": 1619,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -65462,7 +65618,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -65471,12 +65627,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
},
{
- "id": 1607,
+ "id": 1608,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -65486,12 +65642,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"signatures": [
{
- "id": 1608,
+ "id": 1609,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -65501,20 +65657,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1609,
+ "id": 1610,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1613,
+ "id": 1614,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -65524,7 +65680,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 187,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L187"
}
],
"type": {
@@ -65537,14 +65693,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1614,
+ "id": 1615,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1616,
+ "id": 1617,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -65554,7 +65710,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -65563,7 +65719,7 @@
}
},
{
- "id": 1615,
+ "id": 1616,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -65573,7 +65729,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -65585,7 +65741,7 @@
"groups": [
{
"title": "Properties",
- "children": [1616, 1615]
+ "children": [1617, 1616]
}
],
"sources": [
@@ -65593,7 +65749,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -65603,7 +65759,7 @@
"defaultValue": "..."
},
{
- "id": 1611,
+ "id": 1612,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -65613,7 +65769,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 185,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L185"
}
],
"type": {
@@ -65623,7 +65779,7 @@
"defaultValue": "..."
},
{
- "id": 1610,
+ "id": 1611,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -65633,7 +65789,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 184,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L184"
}
],
"type": {
@@ -65643,7 +65799,7 @@
"defaultValue": "..."
},
{
- "id": 1612,
+ "id": 1613,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -65653,7 +65809,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 186,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L186"
}
],
"type": {
@@ -65666,7 +65822,7 @@
"groups": [
{
"title": "Properties",
- "children": [1613, 1611, 1610, 1612]
+ "children": [1614, 1612, 1611, 1613]
}
],
"sources": [
@@ -65674,7 +65830,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 183,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L183"
}
]
}
@@ -65686,15 +65842,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1596]
+ "children": [1597]
},
{
"title": "Properties",
- "children": [1619, 1603, 1617, 1618]
+ "children": [1620, 1604, 1618, 1619]
},
{
"title": "Methods",
- "children": [1607]
+ "children": [1608]
}
],
"sources": [
@@ -65702,20 +65858,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 175,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L175"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1586,
+ "id": 1587,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -65741,7 +65897,7 @@
},
"children": [
{
- "id": 1587,
+ "id": 1588,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -65751,12 +65907,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"signatures": [
{
- "id": 1588,
+ "id": 1589,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -65766,12 +65922,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"parameters": [
{
- "id": 1589,
+ "id": 1590,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -65784,25 +65940,25 @@
],
"type": {
"type": "reference",
- "target": 1586,
+ "target": 1587,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1592,
+ "id": 1593,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -65831,7 +65987,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -65860,7 +66016,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1593,
+ "id": 1594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -65873,12 +66029,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1590,
+ "id": 1591,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -65890,7 +66046,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -65899,12 +66055,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1591,
+ "id": 1592,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -65924,7 +66080,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -65933,7 +66089,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -65941,11 +66097,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1587]
+ "children": [1588]
},
{
"title": "Properties",
- "children": [1592, 1590, 1591]
+ "children": [1593, 1591, 1592]
}
],
"sources": [
@@ -65953,20 +66109,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 156,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L156"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1679,
+ "id": 1680,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -65992,7 +66148,7 @@
},
"children": [
{
- "id": 1680,
+ "id": 1681,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -66002,12 +66158,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 321,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L321"
}
],
"signatures": [
{
- "id": 1681,
+ "id": 1682,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -66017,12 +66173,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 321,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L321"
}
],
"parameters": [
{
- "id": 1682,
+ "id": 1683,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -66035,25 +66191,25 @@
],
"type": {
"type": "reference",
- "target": 1679,
+ "target": 1680,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1685,
+ "id": 1686,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -66082,7 +66238,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -66111,7 +66267,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1686,
+ "id": 1687,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -66124,12 +66280,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1683,
+ "id": 1684,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -66141,7 +66297,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -66150,12 +66306,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1684,
+ "id": 1685,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -66175,7 +66331,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -66184,7 +66340,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -66192,11 +66348,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1680]
+ "children": [1681]
},
{
"title": "Properties",
- "children": [1685, 1683, 1684]
+ "children": [1686, 1684, 1685]
}
],
"sources": [
@@ -66204,20 +66360,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 320,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L320"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L320"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1578,
+ "id": 1579,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -66243,7 +66399,7 @@
},
"children": [
{
- "id": 1579,
+ "id": 1580,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -66253,12 +66409,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"signatures": [
{
- "id": 1580,
+ "id": 1581,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -66268,30 +66424,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"type": {
"type": "reference",
- "target": 1578,
+ "target": 1579,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1583,
+ "id": 1584,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -66320,7 +66476,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -66349,7 +66505,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1584,
+ "id": 1585,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -66362,12 +66518,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1581,
+ "id": 1582,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -66379,7 +66535,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -66388,12 +66544,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1582,
+ "id": 1583,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -66413,7 +66569,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -66422,7 +66578,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -66430,11 +66586,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1579]
+ "children": [1580]
},
{
"title": "Properties",
- "children": [1583, 1581, 1582]
+ "children": [1584, 1582, 1583]
}
],
"sources": [
@@ -66442,20 +66598,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 140,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L140"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1649,
+ "id": 1650,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "declaration",
"kind": 128,
@@ -66481,7 +66637,7 @@
},
"children": [
{
- "id": 1650,
+ "id": 1651,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -66491,12 +66647,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L239"
}
],
"signatures": [
{
- "id": 1651,
+ "id": 1652,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "signature",
"kind": 16384,
@@ -66506,30 +66662,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L239"
}
],
"type": {
"type": "reference",
- "target": 1649,
+ "target": 1650,
"name": "AuthPKCECodeVerifierMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1654,
+ "id": 1655,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -66558,7 +66714,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -66587,7 +66743,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1655,
+ "id": 1656,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -66600,12 +66756,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1652,
+ "id": 1653,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -66617,7 +66773,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -66626,12 +66782,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1653,
+ "id": 1654,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -66651,7 +66807,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -66660,7 +66816,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -66668,11 +66824,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1650]
+ "children": [1651]
},
{
"title": "Properties",
- "children": [1654, 1652, 1653]
+ "children": [1655, 1653, 1654]
}
],
"sources": [
@@ -66680,20 +66836,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 238,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L238"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1622,
+ "id": 1623,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -66719,7 +66875,7 @@
},
"children": [
{
- "id": 1623,
+ "id": 1624,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -66729,12 +66885,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"signatures": [
{
- "id": 1624,
+ "id": 1625,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -66744,12 +66900,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"parameters": [
{
- "id": 1625,
+ "id": 1626,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -66760,7 +66916,7 @@
}
},
{
- "id": 1626,
+ "id": 1627,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -66775,14 +66931,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1627,
+ "id": 1628,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1629,
+ "id": 1630,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -66792,7 +66948,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -66801,7 +66957,7 @@
}
},
{
- "id": 1628,
+ "id": 1629,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -66811,7 +66967,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -66823,7 +66979,7 @@
"groups": [
{
"title": "Properties",
- "children": [1629, 1628]
+ "children": [1630, 1629]
}
],
"sources": [
@@ -66831,7 +66987,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
]
}
@@ -66843,25 +66999,25 @@
],
"type": {
"type": "reference",
- "target": 1622,
+ "target": 1623,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1646,
+ "id": 1647,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -66890,7 +67046,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -66919,7 +67075,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1647,
+ "id": 1648,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -66932,12 +67088,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1630,
+ "id": 1631,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -66947,7 +67103,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -66960,14 +67116,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1631,
+ "id": 1632,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1633,
+ "id": 1634,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -66977,7 +67133,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -66986,7 +67142,7 @@
}
},
{
- "id": 1632,
+ "id": 1633,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -66996,7 +67152,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -67008,7 +67164,7 @@
"groups": [
{
"title": "Properties",
- "children": [1633, 1632]
+ "children": [1634, 1633]
}
],
"sources": [
@@ -67016,7 +67172,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -67026,7 +67182,7 @@
"defaultValue": "null"
},
{
- "id": 1644,
+ "id": 1645,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -67038,7 +67194,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -67047,12 +67203,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1645,
+ "id": 1646,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -67072,7 +67228,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -67081,12 +67237,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
},
{
- "id": 1634,
+ "id": 1635,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -67096,12 +67252,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"signatures": [
{
- "id": 1635,
+ "id": 1636,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -67111,20 +67267,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1636,
+ "id": 1637,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1640,
+ "id": 1641,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -67134,7 +67290,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 221,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L221"
}
],
"type": {
@@ -67147,14 +67303,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1641,
+ "id": 1642,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1643,
+ "id": 1644,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -67164,7 +67320,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -67173,7 +67329,7 @@
}
},
{
- "id": 1642,
+ "id": 1643,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -67183,7 +67339,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -67195,7 +67351,7 @@
"groups": [
{
"title": "Properties",
- "children": [1643, 1642]
+ "children": [1644, 1643]
}
],
"sources": [
@@ -67203,7 +67359,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -67213,7 +67369,7 @@
"defaultValue": "..."
},
{
- "id": 1638,
+ "id": 1639,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -67223,7 +67379,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 219,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L219"
}
],
"type": {
@@ -67233,7 +67389,7 @@
"defaultValue": "..."
},
{
- "id": 1637,
+ "id": 1638,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -67243,7 +67399,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L218"
}
],
"type": {
@@ -67253,7 +67409,7 @@
"defaultValue": "..."
},
{
- "id": 1639,
+ "id": 1640,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -67263,7 +67419,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 220,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L220"
}
],
"type": {
@@ -67276,7 +67432,7 @@
"groups": [
{
"title": "Properties",
- "children": [1640, 1638, 1637, 1639]
+ "children": [1641, 1639, 1638, 1640]
}
],
"sources": [
@@ -67284,7 +67440,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 217,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L217"
}
]
}
@@ -67296,15 +67452,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1623]
+ "children": [1624]
},
{
"title": "Properties",
- "children": [1646, 1630, 1644, 1645]
+ "children": [1647, 1631, 1645, 1646]
},
{
"title": "Methods",
- "children": [1634]
+ "children": [1635]
}
],
"sources": [
@@ -67312,20 +67468,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 208,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L208"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1657,
+ "id": 1658,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -67351,7 +67507,7 @@
},
"children": [
{
- "id": 1658,
+ "id": 1659,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -67361,12 +67517,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L269"
}
],
"signatures": [
{
- "id": 1659,
+ "id": 1660,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -67376,12 +67532,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L269"
}
],
"parameters": [
{
- "id": 1660,
+ "id": 1661,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -67392,7 +67548,7 @@
}
},
{
- "id": 1661,
+ "id": 1662,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -67405,25 +67561,25 @@
],
"type": {
"type": "reference",
- "target": 1657,
+ "target": 1658,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1664,
+ "id": 1665,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -67452,7 +67608,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -67481,7 +67637,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1665,
+ "id": 1666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -67494,12 +67650,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1662,
+ "id": 1663,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -67511,7 +67667,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -67520,12 +67676,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1663,
+ "id": 1664,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -67545,7 +67701,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -67554,7 +67710,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -67562,11 +67718,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1658]
+ "children": [1659]
},
{
"title": "Properties",
- "children": [1664, 1662, 1663]
+ "children": [1665, 1663, 1664]
}
],
"sources": [
@@ -67574,20 +67730,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 268,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L268"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1570,
+ "id": 1571,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -67613,7 +67769,7 @@
},
"children": [
{
- "id": 1571,
+ "id": 1572,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -67623,12 +67779,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"signatures": [
{
- "id": 1572,
+ "id": 1573,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -67638,30 +67794,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"type": {
"type": "reference",
- "target": 1570,
+ "target": 1571,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1575,
+ "id": 1576,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -67690,7 +67846,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -67719,7 +67875,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1576,
+ "id": 1577,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -67732,12 +67888,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1573,
+ "id": 1574,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -67749,7 +67905,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -67758,12 +67914,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1574,
+ "id": 1575,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -67783,7 +67939,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -67792,7 +67948,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -67800,11 +67956,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1571]
+ "children": [1572]
},
{
"title": "Properties",
- "children": [1575, 1573, 1574]
+ "children": [1576, 1574, 1575]
}
],
"sources": [
@@ -67812,20 +67968,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 120,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L120"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1548,
+ "id": 1549,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -67851,7 +68007,7 @@
},
"children": [
{
- "id": 1549,
+ "id": 1550,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -67861,12 +68017,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"signatures": [
{
- "id": 1550,
+ "id": 1551,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -67876,12 +68032,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"parameters": [
{
- "id": 1551,
+ "id": 1552,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -67892,7 +68048,7 @@
}
},
{
- "id": 1552,
+ "id": 1553,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -67905,25 +68061,25 @@
],
"type": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1530,
+ "target": 1531,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1529,
+ "target": 1530,
"name": "AuthError.constructor"
}
},
{
- "id": 1554,
+ "id": 1555,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -67952,7 +68108,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -67981,7 +68137,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1555,
+ "id": 1556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -67994,12 +68150,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1534,
+ "target": 1535,
"name": "AuthError.code"
}
},
{
- "id": 1553,
+ "id": 1554,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -68009,7 +68165,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L80"
}
],
"type": {
@@ -68018,7 +68174,7 @@
}
},
{
- "id": 1556,
+ "id": 1557,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -68038,7 +68194,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -68056,7 +68212,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1536,
+ "target": 1537,
"name": "AuthError.status"
}
}
@@ -68064,11 +68220,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1549]
+ "children": [1550]
},
{
"title": "Properties",
- "children": [1554, 1553, 1556]
+ "children": [1555, 1554, 1557]
}
],
"sources": [
@@ -68076,20 +68232,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 79,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L79"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1667,
+ "id": 1668,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -68115,7 +68271,7 @@
},
"children": [
{
- "id": 1668,
+ "id": 1669,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -68125,12 +68281,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L299"
}
],
"signatures": [
{
- "id": 1669,
+ "id": 1670,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -68140,12 +68296,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L299"
}
],
"parameters": [
{
- "id": 1670,
+ "id": 1671,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -68156,7 +68312,7 @@
}
},
{
- "id": 1671,
+ "id": 1672,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -68167,7 +68323,7 @@
}
},
{
- "id": 1672,
+ "id": 1673,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -68196,25 +68352,25 @@
],
"type": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1676,
+ "id": 1677,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -68243,7 +68399,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -68272,7 +68428,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1677,
+ "id": 1678,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -68285,12 +68441,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1674,
+ "id": 1675,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -68302,7 +68458,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -68311,12 +68467,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1673,
+ "id": 1674,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -68334,7 +68490,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L297"
}
],
"type": {
@@ -68359,7 +68515,7 @@
}
},
{
- "id": 1675,
+ "id": 1676,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -68379,7 +68535,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -68388,7 +68544,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -68396,11 +68552,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1668]
+ "children": [1669]
},
{
"title": "Properties",
- "children": [1676, 1674, 1673, 1675]
+ "children": [1677, 1675, 1674, 1676]
}
],
"sources": [
@@ -68408,20 +68564,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 293,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L293"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1558,
+ "id": 1559,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -68447,7 +68603,7 @@
},
"children": [
{
- "id": 1559,
+ "id": 1560,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -68457,12 +68613,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"signatures": [
{
- "id": 1560,
+ "id": 1561,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -68472,12 +68628,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"parameters": [
{
- "id": 1561,
+ "id": 1562,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -68488,7 +68644,7 @@
}
},
{
- "id": 1562,
+ "id": 1563,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -68499,7 +68655,7 @@
}
},
{
- "id": 1563,
+ "id": 1564,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -68510,7 +68666,7 @@
}
},
{
- "id": 1564,
+ "id": 1565,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -68532,25 +68688,25 @@
],
"type": {
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1530,
+ "target": 1531,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1529,
+ "target": 1530,
"name": "AuthError.constructor"
}
},
{
- "id": 1567,
+ "id": 1568,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -68579,7 +68735,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -68608,7 +68764,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1568,
+ "id": 1569,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -68621,12 +68777,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1534,
+ "target": 1535,
"name": "AuthError.code"
}
},
{
- "id": 1565,
+ "id": 1566,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -68636,7 +68792,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -68650,7 +68806,7 @@
}
},
{
- "id": 1566,
+ "id": 1567,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -68668,7 +68824,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -68677,7 +68833,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1536,
+ "target": 1537,
"name": "AuthError.status"
}
}
@@ -68685,11 +68841,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1559]
+ "children": [1560]
},
{
"title": "Properties",
- "children": [1567, 1565, 1566]
+ "children": [1568, 1566, 1567]
}
],
"sources": [
@@ -68697,13 +68853,13 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 99,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L99"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -68711,47 +68867,47 @@
"extendedBy": [
{
"type": "reference",
- "target": 1570,
+ "target": 1571,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1578,
+ "target": 1579,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1586,
+ "target": 1587,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1595,
+ "target": 1596,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1622,
+ "target": 1623,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1649,
+ "target": 1650,
"name": "AuthPKCECodeVerifierMissingError"
},
{
"type": "reference",
- "target": 1657,
+ "target": 1658,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1679,
+ "target": 1680,
"name": "AuthInvalidJwtError"
}
]
@@ -68774,7 +68930,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"signatures": [
@@ -68808,7 +68964,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"parameters": [
@@ -68840,7 +68996,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 70,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
}
],
"type": {
@@ -69069,7 +69225,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"type": {
@@ -69085,7 +69241,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"indexSignatures": [
@@ -69100,7 +69256,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 68,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
}
],
"parameters": [
@@ -69137,7 +69293,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
}
],
"type": {
@@ -69158,7 +69314,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 65,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
}
]
}
@@ -69194,12 +69350,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
}
],
"type": {
"type": "reference",
- "target": 1306,
+ "target": 1307,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -69223,12 +69379,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
}
],
"type": {
"type": "reference",
- "target": 1432,
+ "target": 1433,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -69244,7 +69400,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"signatures": [
@@ -69275,7 +69431,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"parameters": [
@@ -69287,7 +69443,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 905,
+ "target": 906,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -69302,7 +69458,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -69324,7 +69480,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 337,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
}
],
"signatures": [
@@ -69355,7 +69511,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 337,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
}
],
"parameters": [
@@ -69416,7 +69572,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -69438,7 +69594,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"signatures": [
@@ -69461,7 +69617,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"parameters": [
@@ -69473,7 +69629,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1115,
+ "target": 1116,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -69488,7 +69644,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1116,
+ "target": 1117,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -69510,7 +69666,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"signatures": [
@@ -69533,7 +69689,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"parameters": [
@@ -69574,7 +69730,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -69596,7 +69752,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"signatures": [
@@ -69619,7 +69775,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"parameters": [
@@ -69694,7 +69850,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 129,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
}
],
"type": {
@@ -69723,7 +69879,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 132,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
}
],
"type": {
@@ -69743,7 +69899,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 127,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
}
]
}
@@ -69760,7 +69916,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -69782,7 +69938,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"signatures": [
@@ -69813,7 +69969,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"parameters": [
@@ -69851,7 +70007,7 @@
},
"type": {
"type": "reference",
- "target": 1327,
+ "target": 1328,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -69887,7 +70043,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -69913,7 +70069,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -69932,14 +70088,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -69957,14 +70113,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
},
{
"type": "reference",
- "target": 1320,
+ "target": 1321,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -69982,7 +70138,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -70002,7 +70158,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
@@ -70027,7 +70183,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -70050,7 +70206,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -70069,7 +70225,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -70086,12 +70242,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -70108,7 +70264,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -70133,7 +70289,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"signatures": [
@@ -70156,7 +70312,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"parameters": [
@@ -70240,7 +70396,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -70259,7 +70415,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -70271,7 +70427,7 @@
},
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -70290,7 +70446,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
]
}
@@ -70313,7 +70469,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 310,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
}
],
"signatures": [
@@ -70421,7 +70577,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 310,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
}
],
"parameters": [
@@ -70468,7 +70624,7 @@
},
"type": {
"type": "reference",
- "target": 905,
+ "target": 906,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -70483,7 +70639,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -70514,7 +70670,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 32,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
}
]
},
@@ -70534,9 +70690,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 298,
+ "line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L299"
}
],
"signatures": [
@@ -70568,9 +70724,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 298,
+ "line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L299"
}
],
"parameters": [
@@ -70615,9 +70771,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 203,
+ "line": 204,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L204"
}
],
"type": {
@@ -70645,14 +70801,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 207,
+ "line": 208,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L207"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L208"
}
],
"type": {
"type": "reference",
- "target": 1175,
+ "target": 1176,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -70674,14 +70830,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 213,
+ "line": 214,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L214"
}
],
"type": {
"type": "reference",
- "target": 1484,
+ "target": 1485,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -70695,9 +70851,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 757,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L757"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"signatures": [
@@ -70718,9 +70874,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 757,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L757"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"parameters": [
@@ -70745,7 +70901,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 799,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -70765,9 +70921,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3801,
+ "line": 3807,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3801"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3807"
}
],
"signatures": [
@@ -70814,9 +70970,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3801,
+ "line": 3807,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3801"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3807"
}
],
"parameters": [
@@ -70908,9 +71064,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3810,
+ "line": 3816,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3810"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3816"
}
],
"type": {
@@ -70937,9 +71093,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3813,
+ "line": 3819,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3813"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3819"
}
],
"type": {
@@ -70960,16 +71116,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3813,
+ "line": 3819,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3813"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3819"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1375,
+ "target": 1376,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -70985,9 +71141,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3813,
+ "line": 3819,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3813"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3819"
}
]
}
@@ -71018,16 +71174,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3807,
+ "line": 3813,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3807"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3813"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1375,
+ "target": 1376,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -71043,9 +71199,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3803,
+ "line": 3809,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3803"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3809"
}
]
}
@@ -71081,9 +71237,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
@@ -71104,14 +71260,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
"type": "reference",
- "target": 1355,
+ "target": 1356,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
@@ -71125,14 +71281,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
"type": "reference",
- "target": 1340,
+ "target": 1341,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
@@ -71146,9 +71302,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
@@ -71171,9 +71327,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
]
}
@@ -71188,9 +71344,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3818,
+ "line": 3824,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3818"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3824"
}
],
"type": {
@@ -71208,9 +71364,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3816,
+ "line": 3822,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3816"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3822"
}
]
}
@@ -71233,9 +71389,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3820,
+ "line": 3826,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3826"
}
],
"type": {
@@ -71252,14 +71408,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3820,
+ "line": 3826,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3826"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -71274,9 +71430,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3820,
+ "line": 3826,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3826"
}
]
}
@@ -71299,9 +71455,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3821,
+ "line": 3827,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3827"
}
],
"type": {
@@ -71318,9 +71474,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3821,
+ "line": 3827,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3827"
}
],
"type": {
@@ -71338,9 +71494,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3821,
+ "line": 3827,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3827"
}
]
}
@@ -71363,9 +71519,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1478,
+ "line": 1484,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1484"
}
],
"signatures": [
@@ -71395,9 +71551,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1478,
+ "line": 1484,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1484"
}
],
"type": {
@@ -71428,9 +71584,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1571,
+ "line": 1577,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1577"
}
],
"type": {
@@ -71451,14 +71607,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1572,
+ "line": 1578,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1572"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1578"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -71473,9 +71629,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1571,
+ "line": 1577,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1577"
}
]
}
@@ -71490,9 +71646,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1574,
+ "line": 1580,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1574"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1580"
}
],
"type": {
@@ -71510,9 +71666,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1570,
+ "line": 1576,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1570"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1576"
}
]
}
@@ -71535,9 +71691,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1577,
+ "line": 1583,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1577"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1583"
}
],
"type": {
@@ -71558,9 +71714,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1578,
+ "line": 1584,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1578"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1584"
}
],
"type": {
@@ -71578,9 +71734,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1577,
+ "line": 1583,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1577"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1583"
}
]
}
@@ -71595,14 +71751,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1580,
+ "line": 1586,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1580"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1586"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -71617,9 +71773,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1576,
+ "line": 1582,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1576"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1582"
}
]
}
@@ -71642,9 +71798,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1583,
+ "line": 1589,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1589"
}
],
"type": {
@@ -71665,9 +71821,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1584,
+ "line": 1590,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1590"
}
],
"type": {
@@ -71685,9 +71841,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1583,
+ "line": 1589,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1589"
}
]
}
@@ -71702,9 +71858,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1586,
+ "line": 1592,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1592"
}
],
"type": {
@@ -71722,9 +71878,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1582,
+ "line": 1588,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1582"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1588"
}
]
}
@@ -71747,9 +71903,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1720,
+ "line": 1726,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1720"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1726"
}
],
"signatures": [
@@ -71770,9 +71926,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1720,
+ "line": 1726,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1720"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1726"
}
],
"parameters": [
@@ -71807,7 +71963,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -71827,9 +71983,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2316,
+ "line": 2322,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2316"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2322"
}
],
"signatures": [
@@ -71850,9 +72006,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2316,
+ "line": 2322,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2316"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2322"
}
],
"type": {
@@ -71883,9 +72039,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2318,
+ "line": 2324,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2324"
}
],
"type": {
@@ -71906,16 +72062,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2319,
+ "line": 2325,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2319"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2325"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -71931,9 +72087,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2318,
+ "line": 2324,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2324"
}
]
}
@@ -71948,9 +72104,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2321,
+ "line": 2327,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2327"
}
],
"type": {
@@ -71968,9 +72124,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2317,
+ "line": 2323,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2317"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2323"
}
]
}
@@ -71993,9 +72149,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2323,
+ "line": 2329,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2323"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2329"
}
],
"type": {
@@ -72012,14 +72168,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2323,
+ "line": 2329,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2323"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2329"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -72034,9 +72190,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2323,
+ "line": 2329,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2323"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2329"
}
]
}
@@ -72059,9 +72215,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 453,
+ "line": 459,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L459"
}
],
"signatures": [
@@ -72082,9 +72238,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 453,
+ "line": 459,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L459"
}
],
"type": {
@@ -72096,7 +72252,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1316,
+ "target": 1317,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -72118,9 +72274,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 417,
+ "line": 423,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L417"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L423"
}
],
"signatures": [
@@ -72141,9 +72297,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 417,
+ "line": 423,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L417"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L423"
}
],
"type": {
@@ -72162,21 +72318,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2341,
+ "line": 2347,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2347"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2346,
+ "line": 2352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2352"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2348,
+ "line": 2354,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2348"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2354"
}
],
"signatures": [
@@ -72197,9 +72353,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2341,
+ "line": 2347,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2347"
}
],
"parameters": [
@@ -72211,7 +72367,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 965,
+ "target": 966,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -72226,7 +72382,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 807,
+ "target": 808,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -72252,9 +72408,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2346,
+ "line": 2352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2352"
}
],
"parameters": [
@@ -72266,7 +72422,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 977,
+ "target": 978,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -72281,7 +72437,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 799,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -72301,21 +72457,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2213,
+ "line": 2219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2219"
}
],
"signatures": [
@@ -72336,9 +72492,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
],
"parameters": [
@@ -72367,9 +72523,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
],
"signatures": [
@@ -72382,9 +72538,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
],
"parameters": [
@@ -72416,7 +72572,7 @@
},
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -72452,9 +72608,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2194,
+ "line": 2200,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2200"
}
],
"type": {
@@ -72475,14 +72631,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2194,
+ "line": 2200,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2200"
}
],
"type": {
"type": "reference",
- "target": 918,
+ "target": 919,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -72497,9 +72653,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2194,
+ "line": 2200,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2200"
}
]
}
@@ -72515,9 +72671,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 90,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
]
}
@@ -72559,9 +72715,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
],
"parameters": [
@@ -72590,9 +72746,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
],
"signatures": [
@@ -72605,9 +72761,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
],
"parameters": [
@@ -72639,7 +72795,7 @@
},
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -72686,9 +72842,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2210,
+ "line": 2216,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2216"
}
],
"type": {
@@ -72709,14 +72865,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2210,
+ "line": 2216,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2216"
}
],
"type": {
"type": "reference",
- "target": 918,
+ "target": 919,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -72731,9 +72887,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2210,
+ "line": 2216,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2216"
}
]
}
@@ -72749,9 +72905,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
]
}
@@ -72768,9 +72924,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1391,
+ "line": 1397,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1397"
}
],
"signatures": [
@@ -72791,9 +72947,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1391,
+ "line": 1397,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1397"
}
],
"type": {
@@ -72805,7 +72961,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -72825,9 +72981,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
],
"signatures": [
@@ -72848,9 +73004,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
],
"parameters": [
@@ -72888,9 +73044,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
],
"type": {
@@ -72908,9 +73064,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
]
}
@@ -72926,7 +73082,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -72946,9 +73102,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1426,
+ "line": 1432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1432"
}
],
"signatures": [
@@ -72969,9 +73125,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1426,
+ "line": 1432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1432"
}
],
"parameters": [
@@ -72983,7 +73139,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1061,
+ "target": 1062,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -72998,7 +73154,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 793,
+ "target": 794,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -73018,9 +73174,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2269,
+ "line": 2275,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2275"
}
],
"signatures": [
@@ -73041,9 +73197,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2269,
+ "line": 2275,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2275"
}
],
"parameters": [
@@ -73100,9 +73256,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2273,
+ "line": 2279,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2273"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2279"
}
],
"type": {
@@ -73129,9 +73285,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2272,
+ "line": 2278,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2272"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2278"
}
],
"type": {
@@ -73149,9 +73305,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2271,
+ "line": 2277,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2277"
}
]
}
@@ -73187,9 +73343,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2277,
+ "line": 2283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2283"
}
],
"type": {
@@ -73212,9 +73368,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2278,
+ "line": 2284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2278"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2284"
}
],
"type": {
@@ -73232,9 +73388,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2276,
+ "line": 2282,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2282"
}
]
}
@@ -73257,9 +73413,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2286,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2286"
}
],
"type": {
@@ -73276,14 +73432,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2286,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2286"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -73298,9 +73454,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2286,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2286"
}
]
}
@@ -73323,9 +73479,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1857,
+ "line": 1863,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1857"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1863"
}
],
"signatures": [
@@ -73346,9 +73502,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1857,
+ "line": 1863,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1857"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1863"
}
],
"parameters": [
@@ -73384,9 +73540,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1858,
+ "line": 1864,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1858"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1864"
}
],
"type": {
@@ -73403,9 +73559,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1859,
+ "line": 1865,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1859"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1865"
}
],
"type": {
@@ -73423,9 +73579,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1857,
+ "line": 1863,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1857"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1863"
}
]
}
@@ -73441,7 +73597,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -73461,9 +73617,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 559,
+ "line": 565,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L565"
}
],
"signatures": [
@@ -73495,9 +73651,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 559,
+ "line": 565,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L565"
}
],
"parameters": [
@@ -73511,7 +73667,7 @@
},
"type": {
"type": "reference",
- "target": 928,
+ "target": 929,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -73526,7 +73682,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -73546,9 +73702,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1174,
+ "line": 1180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1174"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1180"
}
],
"signatures": [
@@ -73569,9 +73725,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1174,
+ "line": 1180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1174"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1180"
}
],
"parameters": [
@@ -73583,7 +73739,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 977,
+ "target": 978,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -73598,7 +73754,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 799,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -73618,9 +73774,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 745,
+ "line": 751,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L745"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L751"
}
],
"signatures": [
@@ -73641,9 +73797,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 745,
+ "line": 751,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L745"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L751"
}
],
"parameters": [
@@ -73655,7 +73811,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 965,
+ "target": 966,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -73670,7 +73826,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 807,
+ "target": 808,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -73690,9 +73846,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1227,
+ "line": 1233,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1233"
}
],
"signatures": [
@@ -73729,9 +73885,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1227,
+ "line": 1233,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1233"
}
],
"parameters": [
@@ -73743,7 +73899,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 947,
+ "target": 948,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -73758,7 +73914,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 793,
+ "target": 794,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -73778,9 +73934,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 681,
+ "line": 687,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L681"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L687"
}
],
"signatures": [
@@ -73801,9 +73957,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 681,
+ "line": 687,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L681"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L687"
}
],
"parameters": [
@@ -73815,7 +73971,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 942,
+ "target": 943,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -73830,7 +73986,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 802,
+ "target": 803,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -73850,9 +74006,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1345,
+ "line": 1351,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1345"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1351"
}
],
"signatures": [
@@ -73873,9 +74029,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1345,
+ "line": 1351,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1345"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1351"
}
],
"parameters": [
@@ -73887,7 +74043,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1075,
+ "target": 1076,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -73902,7 +74058,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 820,
+ "target": 821,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -73922,9 +74078,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 772,
+ "line": 778,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L778"
}
],
"signatures": [
@@ -73956,9 +74112,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 772,
+ "line": 778,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L778"
}
],
"parameters": [
@@ -73970,7 +74126,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1038,
+ "target": 1039,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -74004,9 +74160,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
],
"type": {
@@ -74027,14 +74183,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -74048,14 +74204,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -74070,9 +74226,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
]
}
@@ -74087,9 +74243,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 775,
+ "line": 781,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L775"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L781"
}
],
"type": {
@@ -74107,9 +74263,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 773,
+ "line": 779,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L773"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L779"
}
]
}
@@ -74132,9 +74288,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
@@ -74155,9 +74311,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
@@ -74174,9 +74330,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
@@ -74194,9 +74350,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
]
}
@@ -74211,14 +74367,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -74233,9 +74389,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
]
}
@@ -74258,9 +74414,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
],
"signatures": [
@@ -74321,9 +74477,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
],
"parameters": [
@@ -74335,7 +74491,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1331,
+ "target": 1332,
"name": "SignOut",
"package": "@supabase/auth-js"
},
@@ -74367,9 +74523,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
],
"type": {
@@ -74381,7 +74537,7 @@
},
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -74398,9 +74554,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
]
}
@@ -74421,9 +74577,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 602,
+ "line": 608,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L608"
}
],
"signatures": [
@@ -74464,9 +74620,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 602,
+ "line": 608,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L608"
}
],
"parameters": [
@@ -74478,7 +74634,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 934,
+ "target": 935,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -74493,7 +74649,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -74513,9 +74669,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2945,
+ "line": 2951,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2945"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2951"
}
],
"signatures": [
@@ -74551,9 +74707,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2945,
+ "line": 2951,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2945"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2951"
}
],
"type": {
@@ -74583,9 +74739,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2958,
+ "line": 2964,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2964"
}
],
"signatures": [
@@ -74615,9 +74771,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2958,
+ "line": 2964,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2964"
}
],
"type": {
@@ -74647,9 +74803,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2446,
+ "line": 2452,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2452"
}
],
"signatures": [
@@ -74670,9 +74826,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2446,
+ "line": 2452,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2452"
}
],
"parameters": [
@@ -74684,7 +74840,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -74718,9 +74874,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2448,
+ "line": 2454,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2448"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2454"
}
],
"type": {
@@ -74743,9 +74899,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2449,
+ "line": 2455,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2455"
}
],
"type": {
@@ -74763,9 +74919,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2447,
+ "line": 2453,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2453"
}
]
}
@@ -74788,9 +74944,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2451,
+ "line": 2457,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2457"
}
],
"type": {
@@ -74807,14 +74963,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2451,
+ "line": 2457,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2457"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -74829,9 +74985,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2451,
+ "line": 2457,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2457"
}
]
}
@@ -74854,9 +75010,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1785,
+ "line": 1791,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1791"
}
],
"signatures": [
@@ -74877,9 +75033,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1785,
+ "line": 1791,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1791"
}
],
"parameters": [
@@ -74891,7 +75047,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 899,
+ "target": 900,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -74922,9 +75078,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1788,
+ "line": 1794,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1788"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1794"
}
],
"type": {
@@ -74942,9 +75098,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1787,
+ "line": 1793,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1787"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1793"
}
]
}
@@ -74961,7 +75117,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -74981,9 +75137,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1284,
+ "line": 1290,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1284"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1290"
}
],
"signatures": [
@@ -75004,9 +75160,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1284,
+ "line": 1290,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1284"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1290"
}
],
"parameters": [
@@ -75018,7 +75174,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1039,
+ "target": 1040,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -75033,7 +75189,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -75065,9 +75221,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 194,
+ "line": 195,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L195"
}
]
},
@@ -75108,7 +75264,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"signatures": [
@@ -75123,7 +75279,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"parameters": [
@@ -75173,7 +75329,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 35,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L35"
}
],
"type": {
@@ -75203,7 +75359,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L52"
}
],
"extendedTypes": [
@@ -75219,14 +75375,14 @@
]
},
{
- "id": 905,
+ "id": 906,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 907,
+ "id": 908,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -75260,9 +75416,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 515,
+ "line": 524,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L515"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L524"
}
],
"type": {
@@ -75271,7 +75427,7 @@
}
},
{
- "id": 910,
+ "id": 911,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -75289,9 +75445,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 541,
+ "line": 550,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L541"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L550"
}
],
"type": {
@@ -75300,7 +75456,7 @@
}
},
{
- "id": 916,
+ "id": 917,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -75319,9 +75475,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 466,
+ "line": 475,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L466"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L475"
}
],
"type": {
@@ -75335,7 +75491,7 @@
}
},
{
- "id": 908,
+ "id": 909,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -75353,9 +75509,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 522,
+ "line": 531,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L531"
}
],
"type": {
@@ -75364,7 +75520,7 @@
}
},
{
- "id": 913,
+ "id": 914,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -75398,9 +75554,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 566,
+ "line": 575,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L566"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L575"
}
],
"type": {
@@ -75409,7 +75565,7 @@
}
},
{
- "id": 914,
+ "id": 915,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -75428,9 +75584,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 483,
+ "line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L492"
}
],
"type": {
@@ -75444,7 +75600,7 @@
}
},
{
- "id": 917,
+ "id": 918,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -75463,9 +75619,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 476,
+ "line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -75479,7 +75635,7 @@
}
},
{
- "id": 912,
+ "id": 913,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -75505,9 +75661,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 559,
+ "line": 568,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L568"
}
],
"type": {
@@ -75516,7 +75672,7 @@
}
},
{
- "id": 915,
+ "id": 916,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -75535,9 +75691,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 471,
+ "line": 480,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L480"
}
],
"type": {
@@ -75551,7 +75707,7 @@
}
},
{
- "id": 909,
+ "id": 910,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -75569,9 +75725,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 529,
+ "line": 538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L529"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L538"
}
],
"type": {
@@ -75580,7 +75736,7 @@
}
},
{
- "id": 911,
+ "id": 912,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -75630,9 +75786,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 550,
+ "line": 559,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L550"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L559"
}
],
"type": {
@@ -75641,7 +75797,7 @@
}
},
{
- "id": 906,
+ "id": 907,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -75675,9 +75831,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 505,
+ "line": 514,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"type": {
@@ -75689,15 +75845,15 @@
"groups": [
{
"title": "Properties",
- "children": [907, 910, 916, 908, 913, 914, 917, 912, 915, 909, 911, 906]
+ "children": [908, 911, 917, 909, 914, 915, 918, 913, 916, 910, 912, 907]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 494,
+ "line": 503,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L503"
}
],
"extendedTypes": [
@@ -75710,7 +75866,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 899,
+ "target": 900,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -75725,7 +75881,7 @@
]
},
{
- "id": 837,
+ "id": 838,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -75745,7 +75901,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1289
+ "target": 1290
},
{
"kind": "text",
@@ -75757,7 +75913,7 @@
},
"children": [
{
- "id": 838,
+ "id": 839,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -75773,20 +75929,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 349,
+ "line": 358,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L349"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L358"
}
],
"type": {
"type": "reference",
- "target": 835,
+ "target": 836,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 839,
+ "id": 840,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -75802,9 +75958,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 355,
+ "line": 364,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L355"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L364"
}
],
"type": {
@@ -75816,20 +75972,20 @@
"groups": [
{
"title": "Properties",
- "children": [838, 839]
+ "children": [839, 840]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 347,
+ "line": 356,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L347"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L356"
}
]
},
{
- "id": 1484,
+ "id": 1485,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -75844,7 +76000,7 @@
},
"children": [
{
- "id": 1488,
+ "id": 1489,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -75852,14 +76008,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1912,
+ "line": 1921,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1912"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1921"
}
],
"signatures": [
{
- "id": 1489,
+ "id": 1490,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -75886,14 +76042,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1912,
+ "line": 1921,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1912"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1921"
}
],
"parameters": [
{
- "id": 1490,
+ "id": 1491,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -75912,7 +76068,7 @@
}
},
{
- "id": 1491,
+ "id": 1492,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -75930,14 +76086,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1492,
+ "id": 1493,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1493,
+ "id": 1494,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -75955,9 +76111,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1914,
+ "line": 1923,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1914"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1923"
}
],
"type": {
@@ -75969,15 +76125,15 @@
"groups": [
{
"title": "Properties",
- "children": [1493]
+ "children": [1494]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1914,
+ "line": 1923,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1914"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1923"
}
]
}
@@ -75993,7 +76149,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1475,
+ "target": 1476,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -76005,7 +76161,7 @@
]
},
{
- "id": 1494,
+ "id": 1495,
"name": "denyAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -76013,14 +76169,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1929,
+ "line": 1938,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1929"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1938"
}
],
"signatures": [
{
- "id": 1495,
+ "id": 1496,
"name": "denyAuthorization",
"variant": "signature",
"kind": 4096,
@@ -76047,14 +76203,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1929,
+ "line": 1938,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1929"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1938"
}
],
"parameters": [
{
- "id": 1496,
+ "id": 1497,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -76073,7 +76229,7 @@
}
},
{
- "id": 1497,
+ "id": 1498,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -76091,14 +76247,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1498,
+ "id": 1499,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1499,
+ "id": 1500,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -76116,9 +76272,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1931,
+ "line": 1940,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1940"
}
],
"type": {
@@ -76130,15 +76286,15 @@
"groups": [
{
"title": "Properties",
- "children": [1499]
+ "children": [1500]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1931,
+ "line": 1940,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1940"
}
]
}
@@ -76154,7 +76310,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1475,
+ "target": 1476,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -76166,7 +76322,7 @@
]
},
{
- "id": 1485,
+ "id": 1486,
"name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
@@ -76174,14 +76330,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1898,
+ "line": 1907,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1898"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1907"
}
],
"signatures": [
{
- "id": 1486,
+ "id": 1487,
"name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
@@ -76228,14 +76384,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1898,
+ "line": 1907,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1898"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1907"
}
],
"parameters": [
{
- "id": 1487,
+ "id": 1488,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -76263,7 +76419,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1474,
+ "target": 1475,
"name": "AuthOAuthAuthorizationDetailsResponse",
"package": "@supabase/auth-js"
}
@@ -76275,7 +76431,7 @@
]
},
{
- "id": 1500,
+ "id": 1501,
"name": "listGrants",
"variant": "declaration",
"kind": 2048,
@@ -76283,14 +76439,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1940,
+ "line": 1949,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1940"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1949"
}
],
"signatures": [
{
- "id": 1501,
+ "id": 1502,
"name": "listGrants",
"variant": "signature",
"kind": 4096,
@@ -76317,9 +76473,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1940,
+ "line": 1949,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1940"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1949"
}
],
"type": {
@@ -76331,7 +76487,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1481,
+ "target": 1482,
"name": "AuthOAuthGrantsResponse",
"package": "@supabase/auth-js"
}
@@ -76343,7 +76499,7 @@
]
},
{
- "id": 1502,
+ "id": 1503,
"name": "revokeGrant",
"variant": "declaration",
"kind": 2048,
@@ -76351,14 +76507,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
],
"signatures": [
{
- "id": 1503,
+ "id": 1504,
"name": "revokeGrant",
"variant": "signature",
"kind": 4096,
@@ -76385,14 +76541,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
],
"parameters": [
{
- "id": 1504,
+ "id": 1505,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -76408,14 +76564,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1505,
+ "id": 1506,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1506,
+ "id": 1507,
"name": "clientId",
"variant": "declaration",
"kind": 1024,
@@ -76431,9 +76587,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
],
"type": {
@@ -76445,15 +76601,15 @@
"groups": [
{
"title": "Properties",
- "children": [1506]
+ "children": [1507]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
]
}
@@ -76469,7 +76625,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1482,
+ "target": 1483,
"name": "AuthOAuthRevokeGrantResponse",
"package": "@supabase/auth-js"
}
@@ -76484,27 +76640,27 @@
"groups": [
{
"title": "Methods",
- "children": [1488, 1494, 1485, 1500, 1502]
+ "children": [1489, 1495, 1486, 1501, 1503]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1876,
+ "line": 1885,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1876"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1885"
}
]
},
{
- "id": 1112,
+ "id": 1113,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1113,
+ "id": 1114,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -76538,9 +76694,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 920,
+ "line": 929,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L920"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L929"
}
],
"type": {
@@ -76549,7 +76705,7 @@
}
},
{
- "id": 1114,
+ "id": 1115,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -76567,9 +76723,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 922,
+ "line": 931,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L922"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L931"
}
],
"type": {
@@ -76581,20 +76737,20 @@
"groups": [
{
"title": "Properties",
- "children": [1113, 1114]
+ "children": [1114, 1115]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 914,
+ "line": 923,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L914"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L923"
}
]
},
{
- "id": 1306,
+ "id": 1307,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -76615,7 +76771,7 @@
},
"children": [
{
- "id": 1310,
+ "id": 1311,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -76623,14 +76779,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1371,
+ "line": 1380,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1371"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1380"
}
],
"signatures": [
{
- "id": 1311,
+ "id": 1312,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -76650,7 +76806,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1278
+ "target": 1279
}
]
},
@@ -76663,21 +76819,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1371,
+ "line": 1380,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1371"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1380"
}
],
"parameters": [
{
- "id": 1312,
+ "id": 1313,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1296,
+ "target": 1297,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -76692,7 +76848,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1293,
+ "target": 1294,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -76704,7 +76860,7 @@
]
},
{
- "id": 1307,
+ "id": 1308,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -76712,14 +76868,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1361,
+ "line": 1370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1370"
}
],
"signatures": [
{
- "id": 1308,
+ "id": 1309,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -76735,21 +76891,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1361,
+ "line": 1370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1370"
}
],
"parameters": [
{
- "id": 1309,
+ "id": 1310,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1303,
+ "target": 1304,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -76764,7 +76920,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1300,
+ "target": 1301,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -76779,20 +76935,20 @@
"groups": [
{
"title": "Methods",
- "children": [1310, 1307]
+ "children": [1311, 1308]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1356,
+ "line": 1365,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1356"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1365"
}
]
},
{
- "id": 1432,
+ "id": 1433,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -76807,7 +76963,7 @@
},
"children": [
{
- "id": 1436,
+ "id": 1437,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -76815,14 +76971,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1716,
+ "line": 1725,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1716"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1725"
}
],
"signatures": [
{
- "id": 1437,
+ "id": 1438,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -76846,21 +77002,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1716,
+ "line": 1725,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1716"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1725"
}
],
"parameters": [
{
- "id": 1438,
+ "id": 1439,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1404,
+ "target": 1405,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -76875,7 +77031,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -76887,7 +77043,7 @@
]
},
{
- "id": 1446,
+ "id": 1447,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -76895,14 +77051,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"signatures": [
{
- "id": 1447,
+ "id": 1448,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -76926,14 +77082,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"parameters": [
{
- "id": 1448,
+ "id": 1449,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -76954,14 +77110,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1449,
+ "id": 1450,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1450,
+ "id": 1451,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -76969,9 +77125,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"type": {
@@ -76980,7 +77136,7 @@
}
},
{
- "id": 1451,
+ "id": 1452,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -76988,9 +77144,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"type": {
@@ -77002,7 +77158,7 @@
},
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -77013,15 +77169,15 @@
"groups": [
{
"title": "Properties",
- "children": [1450, 1451]
+ "children": [1451, 1452]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
]
}
@@ -77034,7 +77190,7 @@
]
},
{
- "id": 1439,
+ "id": 1440,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -77042,14 +77198,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1724,
+ "line": 1733,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1724"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1733"
}
],
"signatures": [
{
- "id": 1440,
+ "id": 1441,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -77073,14 +77229,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1724,
+ "line": 1733,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1724"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1733"
}
],
"parameters": [
{
- "id": 1441,
+ "id": 1442,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -77100,7 +77256,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -77112,7 +77268,7 @@
]
},
{
- "id": 1433,
+ "id": 1434,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -77120,14 +77276,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1708,
+ "line": 1717,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1717"
}
],
"signatures": [
{
- "id": 1434,
+ "id": 1435,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -77151,14 +77307,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1708,
+ "line": 1717,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1717"
}
],
"parameters": [
{
- "id": 1435,
+ "id": 1436,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -77167,7 +77323,7 @@
},
"type": {
"type": "reference",
- "target": 1327,
+ "target": 1328,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -77182,7 +77338,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1420,
+ "target": 1421,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -77194,7 +77350,7 @@
]
},
{
- "id": 1452,
+ "id": 1453,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -77202,14 +77358,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1748,
+ "line": 1757,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1748"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1757"
}
],
"signatures": [
{
- "id": 1453,
+ "id": 1454,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -77233,14 +77389,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1748,
+ "line": 1757,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1748"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1757"
}
],
"parameters": [
{
- "id": 1454,
+ "id": 1455,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -77260,7 +77416,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -77272,7 +77428,7 @@
]
},
{
- "id": 1442,
+ "id": 1443,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -77280,14 +77436,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1732,
+ "line": 1741,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1732"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1741"
}
],
"signatures": [
{
- "id": 1443,
+ "id": 1444,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -77311,14 +77467,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1732,
+ "line": 1741,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1732"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1741"
}
],
"parameters": [
{
- "id": 1444,
+ "id": 1445,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -77329,14 +77485,14 @@
}
},
{
- "id": 1445,
+ "id": 1446,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1412,
+ "target": 1413,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -77351,7 +77507,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -77366,20 +77522,20 @@
"groups": [
{
"title": "Methods",
- "children": [1436, 1446, 1439, 1433, 1452, 1442]
+ "children": [1437, 1447, 1440, 1434, 1453, 1443]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1701,
+ "line": 1710,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1701"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1710"
}
]
},
{
- "id": 1175,
+ "id": 1176,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -77394,7 +77550,7 @@
},
"children": [
{
- "id": 1292,
+ "id": 1293,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -77402,9 +77558,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1314,
+ "line": 1323,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1314"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1323"
}
],
"type": {
@@ -77418,7 +77574,7 @@
}
},
{
- "id": 1196,
+ "id": 1197,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -77426,32 +77582,32 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1258,
+ "line": 1267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1267"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1259,
+ "line": 1268,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1259"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1268"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1260,
+ "line": 1269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1260"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1269"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1261,
+ "line": 1270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1270"
}
],
"signatures": [
{
- "id": 1197,
+ "id": 1198,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -77467,14 +77623,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1258,
+ "line": 1267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1267"
}
],
"parameters": [
{
- "id": 1198,
+ "id": 1199,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -77482,14 +77638,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1199,
+ "id": 1200,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1200,
+ "id": 1201,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -77505,9 +77661,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1028,
+ "line": 1037,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1028"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1037"
}
],
"type": {
@@ -77519,15 +77675,15 @@
"groups": [
{
"title": "Properties",
- "children": [1200]
+ "children": [1201]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -77547,14 +77703,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1201,
+ "id": 1202,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1202,
+ "id": 1203,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -77562,9 +77718,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -77573,7 +77729,7 @@
}
},
{
- "id": 1203,
+ "id": 1204,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -77581,14 +77737,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -77597,15 +77753,15 @@
"groups": [
{
"title": "Properties",
- "children": [1202, 1203]
+ "children": [1203, 1204]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -77613,14 +77769,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1204,
+ "id": 1205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1205,
+ "id": 1206,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -77628,22 +77784,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1206,
+ "id": 1207,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1209,
+ "id": 1210,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -77659,9 +77815,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1124,
+ "line": 1133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1133"
}
],
"type": {
@@ -77670,7 +77826,7 @@
}
},
{
- "id": 1207,
+ "id": 1208,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -77686,9 +77842,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1118,
+ "line": 1127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1127"
}
],
"type": {
@@ -77697,7 +77853,7 @@
}
},
{
- "id": 1208,
+ "id": 1209,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -77713,9 +77869,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1121,
+ "line": 1130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1130"
}
],
"type": {
@@ -77727,22 +77883,22 @@
"groups": [
{
"title": "Properties",
- "children": [1209, 1207, 1208]
+ "children": [1210, 1208, 1209]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
}
},
{
- "id": 1210,
+ "id": 1211,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -77750,9 +77906,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -77764,15 +77920,15 @@
"groups": [
{
"title": "Properties",
- "children": [1205, 1210]
+ "children": [1206, 1211]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -77785,7 +77941,7 @@
}
},
{
- "id": 1211,
+ "id": 1212,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -77793,14 +77949,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1259,
+ "line": 1268,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1259"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1268"
}
],
"parameters": [
{
- "id": 1212,
+ "id": 1213,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -77808,14 +77964,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1213,
+ "id": 1214,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1215,
+ "id": 1216,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -77831,9 +77987,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1038,
+ "line": 1047,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1038"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1047"
}
],
"type": {
@@ -77851,7 +78007,7 @@
}
},
{
- "id": 1214,
+ "id": 1215,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -77867,9 +78023,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1028,
+ "line": 1037,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1028"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1037"
}
],
"type": {
@@ -77881,15 +78037,15 @@
"groups": [
{
"title": "Properties",
- "children": [1215, 1214]
+ "children": [1216, 1215]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -77909,14 +78065,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1216,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1217,
+ "id": 1218,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -77924,9 +78080,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -77935,7 +78091,7 @@
}
},
{
- "id": 1218,
+ "id": 1219,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -77943,14 +78099,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -77959,15 +78115,15 @@
"groups": [
{
"title": "Properties",
- "children": [1217, 1218]
+ "children": [1218, 1219]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -77975,14 +78131,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1219,
+ "id": 1220,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1220,
+ "id": 1221,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -77990,22 +78146,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1221,
+ "id": 1222,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1224,
+ "id": 1225,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -78021,9 +78177,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1124,
+ "line": 1133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1133"
}
],
"type": {
@@ -78032,7 +78188,7 @@
}
},
{
- "id": 1222,
+ "id": 1223,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -78048,9 +78204,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1118,
+ "line": 1127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1127"
}
],
"type": {
@@ -78059,7 +78215,7 @@
}
},
{
- "id": 1223,
+ "id": 1224,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -78075,9 +78231,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1121,
+ "line": 1130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1130"
}
],
"type": {
@@ -78089,22 +78245,22 @@
"groups": [
{
"title": "Properties",
- "children": [1224, 1222, 1223]
+ "children": [1225, 1223, 1224]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
}
},
{
- "id": 1225,
+ "id": 1226,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -78112,9 +78268,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -78126,15 +78282,15 @@
"groups": [
{
"title": "Properties",
- "children": [1220, 1225]
+ "children": [1221, 1226]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -78147,7 +78303,7 @@
}
},
{
- "id": 1226,
+ "id": 1227,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -78155,14 +78311,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1260,
+ "line": 1269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1260"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1269"
}
],
"parameters": [
{
- "id": 1227,
+ "id": 1228,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -78170,14 +78326,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1228,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1229,
+ "id": 1230,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -78193,9 +78349,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1028,
+ "line": 1037,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1028"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1037"
}
],
"type": {
@@ -78204,7 +78360,7 @@
}
},
{
- "id": 1230,
+ "id": 1231,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -78212,22 +78368,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1047,
+ "line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1047"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1231,
+ "id": 1232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1232,
+ "id": 1233,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -78243,9 +78399,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1049,
+ "line": 1058,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1049"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1058"
}
],
"type": {
@@ -78254,7 +78410,7 @@
}
},
{
- "id": 1233,
+ "id": 1234,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -78272,9 +78428,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1051,
+ "line": 1060,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1051"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1060"
}
],
"type": {
@@ -78289,15 +78445,15 @@
"groups": [
{
"title": "Properties",
- "children": [1232, 1233]
+ "children": [1233, 1234]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1047,
+ "line": 1056,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1047"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1056"
}
]
}
@@ -78307,15 +78463,15 @@
"groups": [
{
"title": "Properties",
- "children": [1229, 1230]
+ "children": [1230, 1231]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -78335,14 +78491,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1234,
+ "id": 1235,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1235,
+ "id": 1236,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -78350,9 +78506,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -78361,7 +78517,7 @@
}
},
{
- "id": 1236,
+ "id": 1237,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -78369,14 +78525,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -78385,15 +78541,15 @@
"groups": [
{
"title": "Properties",
- "children": [1235, 1236]
+ "children": [1236, 1237]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -78401,14 +78557,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1237,
+ "id": 1238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1238,
+ "id": 1239,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -78416,22 +78572,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1242,
+ "id": 1243,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -78447,9 +78603,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1124,
+ "line": 1133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1133"
}
],
"type": {
@@ -78458,7 +78614,7 @@
}
},
{
- "id": 1240,
+ "id": 1241,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -78474,9 +78630,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1118,
+ "line": 1127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1127"
}
],
"type": {
@@ -78485,7 +78641,7 @@
}
},
{
- "id": 1241,
+ "id": 1242,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -78501,9 +78657,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1121,
+ "line": 1130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1130"
}
],
"type": {
@@ -78512,7 +78668,7 @@
}
},
{
- "id": 1243,
+ "id": 1244,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -78520,9 +78676,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1144,
+ "line": 1153,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1153"
}
],
"type": {
@@ -78531,14 +78687,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1244,
+ "id": 1245,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1246,
+ "id": 1247,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -78546,22 +78702,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1147,
+ "line": 1156,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1156"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1247,
+ "id": 1248,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1248,
+ "id": 1249,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -78569,9 +78725,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1147,
+ "line": 1156,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1156"
}
],
"type": {
@@ -78588,22 +78744,22 @@
"groups": [
{
"title": "Properties",
- "children": [1248]
+ "children": [1249]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1147,
+ "line": 1156,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1156"
}
]
}
}
},
{
- "id": 1245,
+ "id": 1246,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -78611,9 +78767,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1146,
+ "line": 1155,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1155"
}
],
"type": {
@@ -78625,15 +78781,15 @@
"groups": [
{
"title": "Properties",
- "children": [1246, 1245]
+ "children": [1247, 1246]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1145,
+ "line": 1154,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1154"
}
]
}
@@ -78641,14 +78797,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1249,
+ "id": 1250,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1251,
+ "id": 1252,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -78656,22 +78812,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1151,
+ "line": 1160,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1160"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1252,
+ "id": 1253,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1253,
+ "id": 1254,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -78679,9 +78835,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1151,
+ "line": 1160,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1160"
}
],
"type": {
@@ -78698,22 +78854,22 @@
"groups": [
{
"title": "Properties",
- "children": [1253]
+ "children": [1254]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1151,
+ "line": 1160,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1160"
}
]
}
}
},
{
- "id": 1250,
+ "id": 1251,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -78721,9 +78877,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1150,
+ "line": 1159,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1150"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1159"
}
],
"type": {
@@ -78735,15 +78891,15 @@
"groups": [
{
"title": "Properties",
- "children": [1251, 1250]
+ "children": [1252, 1251]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1149,
+ "line": 1158,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1149"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1158"
}
]
}
@@ -78755,22 +78911,22 @@
"groups": [
{
"title": "Properties",
- "children": [1242, 1240, 1241, 1243]
+ "children": [1243, 1241, 1242, 1244]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
}
},
{
- "id": 1254,
+ "id": 1255,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -78778,9 +78934,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -78792,15 +78948,15 @@
"groups": [
{
"title": "Properties",
- "children": [1238, 1254]
+ "children": [1239, 1255]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -78813,7 +78969,7 @@
}
},
{
- "id": 1255,
+ "id": 1256,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -78821,21 +78977,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1261,
+ "line": 1270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1270"
}
],
"parameters": [
{
- "id": 1256,
+ "id": 1257,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1145,
+ "target": 1146,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -78850,7 +79006,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1164,
+ "target": 1165,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -78862,7 +79018,7 @@
]
},
{
- "id": 1281,
+ "id": 1282,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -78870,14 +79026,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1282,
+ "line": 1291,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1282"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1291"
}
],
"signatures": [
{
- "id": 1282,
+ "id": 1283,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -78893,14 +79049,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1282,
+ "line": 1291,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1282"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1291"
}
],
"parameters": [
{
- "id": 1283,
+ "id": 1284,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -78908,14 +79064,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1284,
+ "id": 1285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1286,
+ "id": 1287,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -78931,9 +79087,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 982,
+ "line": 991,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L991"
}
],
"type": {
@@ -78942,7 +79098,7 @@
}
},
{
- "id": 1285,
+ "id": 1286,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -78958,9 +79114,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -78972,15 +79128,15 @@
"groups": [
{
"title": "Properties",
- "children": [1286, 1285]
+ "children": [1287, 1286]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -78996,7 +79152,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -79008,7 +79164,7 @@
]
},
{
- "id": 1176,
+ "id": 1177,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -79016,32 +79172,32 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1249,
+ "line": 1258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1258"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1250,
+ "line": 1259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1259"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1251,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1260"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1252,
+ "line": 1261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1261"
}
],
"signatures": [
{
- "id": 1177,
+ "id": 1178,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -79073,14 +79229,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1249,
+ "line": 1258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1258"
}
],
"parameters": [
{
- "id": 1178,
+ "id": 1179,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -79088,14 +79244,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1179,
+ "id": 1180,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1180,
+ "id": 1181,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -79111,9 +79267,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1430,
+ "line": 1439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1439"
}
],
"type": {
@@ -79122,7 +79278,7 @@
}
},
{
- "id": 1181,
+ "id": 1182,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -79140,9 +79296,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1432,
+ "line": 1441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1441"
}
],
"type": {
@@ -79151,7 +79307,7 @@
}
},
{
- "id": 1182,
+ "id": 1183,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -79169,9 +79325,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1437,
+ "line": 1446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1446"
}
],
"type": {
@@ -79183,15 +79339,15 @@
"groups": [
{
"title": "Properties",
- "children": [1180, 1181, 1182]
+ "children": [1181, 1182, 1183]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -79207,7 +79363,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1337,
+ "target": 1338,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -79217,7 +79373,7 @@
}
},
{
- "id": 1183,
+ "id": 1184,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -79225,14 +79381,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1250,
+ "line": 1259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1259"
}
],
"parameters": [
{
- "id": 1184,
+ "id": 1185,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -79240,14 +79396,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1185,
+ "id": 1186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1186,
+ "id": 1187,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -79263,9 +79419,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1430,
+ "line": 1439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1439"
}
],
"type": {
@@ -79274,7 +79430,7 @@
}
},
{
- "id": 1187,
+ "id": 1188,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -79292,9 +79448,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1432,
+ "line": 1441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1441"
}
],
"type": {
@@ -79303,7 +79459,7 @@
}
},
{
- "id": 1188,
+ "id": 1189,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -79319,9 +79475,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1444,
+ "line": 1453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1453"
}
],
"type": {
@@ -79333,15 +79489,15 @@
"groups": [
{
"title": "Properties",
- "children": [1186, 1187, 1188]
+ "children": [1187, 1188, 1189]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -79357,7 +79513,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1338,
+ "target": 1339,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -79367,7 +79523,7 @@
}
},
{
- "id": 1189,
+ "id": 1190,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -79375,14 +79531,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1251,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1260"
}
],
"parameters": [
{
- "id": 1190,
+ "id": 1191,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -79390,14 +79546,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1191,
+ "id": 1192,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1192,
+ "id": 1193,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -79413,9 +79569,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1430,
+ "line": 1439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1439"
}
],
"type": {
@@ -79424,7 +79580,7 @@
}
},
{
- "id": 1193,
+ "id": 1194,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -79442,9 +79598,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1432,
+ "line": 1441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1441"
}
],
"type": {
@@ -79456,15 +79612,15 @@
"groups": [
{
"title": "Properties",
- "children": [1192, 1193]
+ "children": [1193, 1194]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -79480,7 +79636,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1339,
+ "target": 1340,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -79490,7 +79646,7 @@
}
},
{
- "id": 1194,
+ "id": 1195,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -79498,21 +79654,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1252,
+ "line": 1261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1261"
}
],
"parameters": [
{
- "id": 1195,
+ "id": 1196,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1128,
+ "target": 1129,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -79527,7 +79683,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1155,
+ "target": 1156,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -79539,7 +79695,7 @@
]
},
{
- "id": 1289,
+ "id": 1290,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -79547,14 +79703,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1309,
+ "line": 1318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1318"
}
],
"signatures": [
{
- "id": 1290,
+ "id": 1291,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -79594,14 +79750,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1309,
+ "line": 1318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1318"
}
],
"parameters": [
{
- "id": 1291,
+ "id": 1292,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -79631,7 +79787,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1170,
+ "target": 1171,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -79643,7 +79799,7 @@
]
},
{
- "id": 1287,
+ "id": 1288,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -79651,14 +79807,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1292,
+ "line": 1301,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1301"
}
],
"signatures": [
{
- "id": 1288,
+ "id": 1289,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -79682,7 +79838,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1176
+ "target": 1177
},
{
"kind": "text",
@@ -79696,7 +79852,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1289
+ "target": 1290
},
{
"kind": "text",
@@ -79723,9 +79879,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1292,
+ "line": 1301,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1301"
}
],
"type": {
@@ -79737,7 +79893,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1165,
+ "target": 1166,
"typeArguments": [
{
"type": "typeOperator",
@@ -79772,7 +79928,7 @@
]
},
{
- "id": 1278,
+ "id": 1279,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -79780,14 +79936,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1276,
+ "line": 1285,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1285"
}
],
"signatures": [
{
- "id": 1279,
+ "id": 1280,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -79819,21 +79975,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1276,
+ "line": 1285,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1285"
}
],
"parameters": [
{
- "id": 1280,
+ "id": 1281,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1129,
+ "target": 1130,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -79848,7 +80004,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1156,
+ "target": 1157,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -79860,7 +80016,7 @@
]
},
{
- "id": 1257,
+ "id": 1258,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -79868,32 +80024,32 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1267,
+ "line": 1276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1276"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1268,
+ "line": 1277,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1277"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1269,
+ "line": 1278,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1278"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1270,
+ "line": 1279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1279"
}
],
"signatures": [
{
- "id": 1258,
+ "id": 1259,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -79909,14 +80065,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1267,
+ "line": 1276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1276"
}
],
"parameters": [
{
- "id": 1259,
+ "id": 1260,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -79924,14 +80080,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1260,
+ "id": 1261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1262,
+ "id": 1263,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -79947,9 +80103,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 977,
+ "line": 986,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L977"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -79958,7 +80114,7 @@
}
},
{
- "id": 1263,
+ "id": 1264,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -79974,9 +80130,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 982,
+ "line": 991,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L991"
}
],
"type": {
@@ -79985,7 +80141,7 @@
}
},
{
- "id": 1261,
+ "id": 1262,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -80001,9 +80157,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -80015,15 +80171,15 @@
"groups": [
{
"title": "Properties",
- "children": [1262, 1263, 1261]
+ "children": [1263, 1264, 1262]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -80039,7 +80195,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -80049,7 +80205,7 @@
}
},
{
- "id": 1264,
+ "id": 1265,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -80057,14 +80213,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1268,
+ "line": 1277,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1277"
}
],
"parameters": [
{
- "id": 1265,
+ "id": 1266,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -80072,14 +80228,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1266,
+ "id": 1267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1268,
+ "id": 1269,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -80095,9 +80251,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 977,
+ "line": 986,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L977"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -80106,7 +80262,7 @@
}
},
{
- "id": 1269,
+ "id": 1270,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -80122,9 +80278,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 982,
+ "line": 991,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L991"
}
],
"type": {
@@ -80133,7 +80289,7 @@
}
},
{
- "id": 1267,
+ "id": 1268,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -80149,9 +80305,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -80163,15 +80319,15 @@
"groups": [
{
"title": "Properties",
- "children": [1268, 1269, 1267]
+ "children": [1269, 1270, 1268]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -80187,7 +80343,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -80197,7 +80353,7 @@
}
},
{
- "id": 1270,
+ "id": 1271,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -80205,14 +80361,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1269,
+ "line": 1278,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1278"
}
],
"parameters": [
{
- "id": 1271,
+ "id": 1272,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -80220,14 +80376,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1272,
+ "id": 1273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1274,
+ "id": 1275,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -80243,9 +80399,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 977,
+ "line": 986,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L977"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -80254,7 +80410,7 @@
}
},
{
- "id": 1273,
+ "id": 1274,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -80270,9 +80426,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -80281,7 +80437,7 @@
}
},
{
- "id": 1275,
+ "id": 1276,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -80289,9 +80445,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1012,
+ "line": 1021,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1012"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1021"
}
],
"type": {
@@ -80337,15 +80493,15 @@
"groups": [
{
"title": "Properties",
- "children": [1274, 1273, 1275]
+ "children": [1275, 1274, 1276]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -80361,7 +80517,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -80371,7 +80527,7 @@
}
},
{
- "id": 1276,
+ "id": 1277,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -80379,21 +80535,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1270,
+ "line": 1279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1279"
}
],
"parameters": [
{
- "id": 1277,
+ "id": 1278,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1140,
+ "target": 1141,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -80408,7 +80564,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -80423,31 +80579,31 @@
"groups": [
{
"title": "Properties",
- "children": [1292]
+ "children": [1293]
},
{
"title": "Methods",
- "children": [1196, 1281, 1176, 1289, 1287, 1278, 1257]
+ "children": [1197, 1282, 1177, 1290, 1288, 1279, 1258]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1239,
+ "line": 1248,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1248"
}
]
},
{
- "id": 1375,
+ "id": 1376,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1378,
+ "id": 1379,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -80457,9 +80613,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1573,
+ "line": 1582,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1573"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1582"
}
],
"type": {
@@ -80468,7 +80624,7 @@
}
},
{
- "id": 1377,
+ "id": 1378,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -80476,9 +80632,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1572,
+ "line": 1581,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1572"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1581"
}
],
"type": {
@@ -80490,7 +80646,7 @@
}
},
{
- "id": 1379,
+ "id": 1380,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -80500,9 +80656,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1574,
+ "line": 1583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1574"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1583"
}
],
"type": {
@@ -80511,7 +80667,7 @@
}
},
{
- "id": 1376,
+ "id": 1377,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -80519,9 +80675,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1571,
+ "line": 1580,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1580"
}
],
"type": {
@@ -80546,20 +80702,20 @@
"groups": [
{
"title": "Properties",
- "children": [1378, 1377, 1379, 1376]
+ "children": [1379, 1378, 1380, 1377]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1570,
+ "line": 1579,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1570"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1579"
}
],
"indexSignatures": [
{
- "id": 1380,
+ "id": 1381,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -80567,14 +80723,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1575,
+ "line": 1584,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1575"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1584"
}
],
"parameters": [
{
- "id": 1381,
+ "id": 1382,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -80593,7 +80749,7 @@
]
},
{
- "id": 1355,
+ "id": 1356,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -80619,7 +80775,7 @@
},
"children": [
{
- "id": 1371,
+ "id": 1372,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -80629,14 +80785,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1532,
+ "line": 1541,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1532"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1541"
}
],
"type": {
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -80647,7 +80803,7 @@
}
},
{
- "id": 1363,
+ "id": 1364,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -80665,9 +80821,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1561,
+ "line": 1570,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1570"
}
],
"type": {
@@ -80684,7 +80840,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 837,
+ "target": 838,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
@@ -80693,7 +80849,7 @@
}
},
{
- "id": 1361,
+ "id": 1362,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -80703,20 +80859,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1553,
+ "line": 1562,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1553"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1562"
}
],
"type": {
"type": "reference",
- "target": 864,
+ "target": 865,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1367,
+ "id": 1368,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -80726,9 +80882,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1528,
+ "line": 1537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1528"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1537"
}
],
"type": {
@@ -80754,7 +80910,7 @@
}
},
{
- "id": 1356,
+ "id": 1357,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -80764,9 +80920,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1546,
+ "line": 1555,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1546"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1555"
}
],
"type": {
@@ -80775,7 +80931,7 @@
}
},
{
- "id": 1368,
+ "id": 1369,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -80785,9 +80941,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1529,
+ "line": 1538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1529"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1538"
}
],
"type": {
@@ -80801,7 +80957,7 @@
}
},
{
- "id": 1369,
+ "id": 1370,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -80811,9 +80967,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1530,
+ "line": 1539,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1539"
}
],
"type": {
@@ -80827,7 +80983,7 @@
}
},
{
- "id": 1358,
+ "id": 1359,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -80837,9 +80993,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1548,
+ "line": 1557,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1548"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1557"
}
],
"type": {
@@ -80848,7 +81004,7 @@
}
},
{
- "id": 1365,
+ "id": 1366,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -80858,9 +81014,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1526,
+ "line": 1535,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1526"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1535"
}
],
"type": {
@@ -80874,7 +81030,7 @@
}
},
{
- "id": 1359,
+ "id": 1360,
"name": "jti",
"variant": "declaration",
"kind": 1024,
@@ -80884,9 +81040,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1551,
+ "line": 1560,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1551"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1560"
}
],
"type": {
@@ -80895,7 +81051,7 @@
}
},
{
- "id": 1360,
+ "id": 1361,
"name": "nbf",
"variant": "declaration",
"kind": 1024,
@@ -80905,9 +81061,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1552,
+ "line": 1561,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1552"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1561"
}
],
"type": {
@@ -80916,7 +81072,7 @@
}
},
{
- "id": 1357,
+ "id": 1358,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -80926,9 +81082,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1547,
+ "line": 1556,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1547"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1556"
}
],
"type": {
@@ -80937,7 +81093,7 @@
}
},
{
- "id": 1364,
+ "id": 1365,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -80947,9 +81103,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1564,
+ "line": 1573,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1573"
}
],
"type": {
@@ -80958,7 +81114,7 @@
}
},
{
- "id": 1370,
+ "id": 1371,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -80968,9 +81124,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1531,
+ "line": 1540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1531"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1540"
}
],
"type": {
@@ -80984,7 +81140,7 @@
}
},
{
- "id": 1372,
+ "id": 1373,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -80994,9 +81150,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1533,
+ "line": 1542,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1533"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1542"
}
],
"type": {
@@ -81010,7 +81166,7 @@
}
},
{
- "id": 1366,
+ "id": 1367,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -81020,9 +81176,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1527,
+ "line": 1536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1536"
}
],
"type": {
@@ -81036,7 +81192,7 @@
}
},
{
- "id": 1362,
+ "id": 1363,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -81046,14 +81202,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1554,
+ "line": 1563,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1554"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1563"
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -81063,22 +81219,22 @@
{
"title": "Properties",
"children": [
- 1371, 1363, 1361, 1367, 1356, 1368, 1369, 1358, 1365, 1359, 1360, 1357, 1364, 1370,
- 1372, 1366, 1362
+ 1372, 1364, 1362, 1368, 1357, 1369, 1370, 1359, 1366, 1360, 1361, 1358, 1365, 1371,
+ 1373, 1367, 1363
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1544,
+ "line": 1553,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1544"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1553"
}
],
"indexSignatures": [
{
- "id": 1373,
+ "id": 1374,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -81086,14 +81242,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1567,
+ "line": 1576,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1576"
}
],
"parameters": [
{
- "id": 1374,
+ "id": 1375,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -81113,21 +81269,21 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1345,
+ "target": 1346,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 826,
+ "id": 827,
"name": "Session",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 829,
+ "id": 830,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -81143,9 +81299,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 297,
+ "line": 306,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L306"
}
],
"type": {
@@ -81154,7 +81310,7 @@
}
},
{
- "id": 832,
+ "id": 833,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -81172,9 +81328,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 309,
+ "line": 318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L318"
}
],
"type": {
@@ -81183,7 +81339,7 @@
}
},
{
- "id": 831,
+ "id": 832,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -81199,9 +81355,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 305,
+ "line": 314,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L314"
}
],
"type": {
@@ -81210,7 +81366,7 @@
}
},
{
- "id": 828,
+ "id": 829,
"name": "provider_refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -81228,9 +81384,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 293,
+ "line": 302,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L302"
}
],
"type": {
@@ -81248,7 +81404,7 @@
}
},
{
- "id": 827,
+ "id": 828,
"name": "provider_token",
"variant": "declaration",
"kind": 1024,
@@ -81266,9 +81422,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 288,
+ "line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L297"
}
],
"type": {
@@ -81286,7 +81442,7 @@
}
},
{
- "id": 830,
+ "id": 831,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -81302,9 +81458,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 301,
+ "line": 310,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L310"
}
],
"type": {
@@ -81313,7 +81469,7 @@
}
},
{
- "id": 833,
+ "id": 834,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -81321,9 +81477,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 310,
+ "line": 319,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L319"
}
],
"type": {
@@ -81332,7 +81488,7 @@
}
},
{
- "id": 834,
+ "id": 835,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -81348,14 +81504,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 315,
+ "line": 324,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L324"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -81364,27 +81520,27 @@
"groups": [
{
"title": "Properties",
- "children": [829, 832, 831, 828, 827, 830, 833, 834]
+ "children": [830, 833, 832, 829, 828, 831, 834, 835]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 284,
+ "line": 293,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L284"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L293"
}
]
},
{
- "id": 918,
+ "id": 919,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 920,
+ "id": 921,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -81400,15 +81556,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 579,
+ "line": 588,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L588"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 921,
+ "id": 922,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81416,14 +81572,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 579,
+ "line": 588,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L588"
}
],
"signatures": [
{
- "id": 922,
+ "id": 923,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -81431,14 +81587,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 579,
+ "line": 588,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L588"
}
],
"parameters": [
{
- "id": 923,
+ "id": 924,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -81451,7 +81607,7 @@
}
},
{
- "id": 924,
+ "id": 925,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -81465,7 +81621,7 @@
},
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -81483,7 +81639,7 @@
}
},
{
- "id": 919,
+ "id": 920,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -81499,9 +81655,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 575,
+ "line": 584,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L575"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L584"
}
],
"type": {
@@ -81519,7 +81675,7 @@
}
},
{
- "id": 925,
+ "id": 926,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -81535,15 +81691,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 583,
+ "line": 592,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L592"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 926,
+ "id": 927,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81551,14 +81707,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 583,
+ "line": 592,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L592"
}
],
"signatures": [
{
- "id": 927,
+ "id": 928,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -81566,9 +81722,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 583,
+ "line": 592,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L592"
}
],
"type": {
@@ -81584,27 +81740,27 @@
"groups": [
{
"title": "Properties",
- "children": [920, 919, 925]
+ "children": [921, 920, 926]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 569,
+ "line": 578,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L569"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L578"
}
]
},
{
- "id": 872,
+ "id": 873,
"name": "User",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 883,
+ "id": 884,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -81614,9 +81770,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 444,
+ "line": 453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L453"
}
],
"type": {
@@ -81625,7 +81781,7 @@
}
},
{
- "id": 874,
+ "id": 875,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -81633,20 +81789,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 435,
+ "line": 444,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L444"
}
],
"type": {
"type": "reference",
- "target": 864,
+ "target": 865,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 876,
+ "id": 877,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -81654,9 +81810,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 437,
+ "line": 446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L446"
}
],
"type": {
@@ -81665,7 +81821,7 @@
}
},
{
- "id": 898,
+ "id": 899,
"name": "banned_until",
"variant": "declaration",
"kind": 1024,
@@ -81675,9 +81831,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 459,
+ "line": 468,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L468"
}
],
"type": {
@@ -81686,7 +81842,7 @@
}
},
{
- "id": 877,
+ "id": 878,
"name": "confirmation_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -81696,9 +81852,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 438,
+ "line": 447,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L438"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L447"
}
],
"type": {
@@ -81707,7 +81863,7 @@
}
},
{
- "id": 887,
+ "id": 888,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -81717,9 +81873,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 448,
+ "line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L448"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L457"
}
],
"type": {
@@ -81728,7 +81884,7 @@
}
},
{
- "id": 886,
+ "id": 887,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -81736,9 +81892,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 447,
+ "line": 456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L456"
}
],
"type": {
@@ -81747,7 +81903,7 @@
}
},
{
- "id": 897,
+ "id": 898,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -81757,9 +81913,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 458,
+ "line": 467,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L458"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L467"
}
],
"type": {
@@ -81768,7 +81924,7 @@
}
},
{
- "id": 884,
+ "id": 885,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -81778,9 +81934,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 445,
+ "line": 454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L454"
}
],
"type": {
@@ -81789,7 +81945,7 @@
}
},
{
- "id": 879,
+ "id": 880,
"name": "email_change_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -81799,9 +81955,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 440,
+ "line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L449"
}
],
"type": {
@@ -81810,7 +81966,7 @@
}
},
{
- "id": 888,
+ "id": 889,
"name": "email_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -81820,9 +81976,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 449,
+ "line": 458,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L458"
}
],
"type": {
@@ -81831,7 +81987,7 @@
}
},
{
- "id": 896,
+ "id": 897,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -81841,9 +81997,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 457,
+ "line": 466,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L466"
}
],
"type": {
@@ -81853,7 +82009,7 @@
"types": [
{
"type": "reference",
- "target": 853,
+ "target": 854,
"typeArguments": [
{
"type": "union",
@@ -81882,7 +82038,7 @@
},
{
"type": "reference",
- "target": 853,
+ "target": 854,
"typeArguments": [
{
"type": "union",
@@ -81914,7 +82070,7 @@
}
},
{
- "id": 873,
+ "id": 874,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -81922,9 +82078,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 434,
+ "line": 443,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L443"
}
],
"type": {
@@ -81933,7 +82089,7 @@
}
},
{
- "id": 893,
+ "id": 894,
"name": "identities",
"variant": "declaration",
"kind": 1024,
@@ -81943,23 +82099,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 454,
+ "line": 463,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L463"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 882,
+ "id": 883,
"name": "invited_at",
"variant": "declaration",
"kind": 1024,
@@ -81969,9 +82125,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 443,
+ "line": 452,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L443"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L452"
}
],
"type": {
@@ -81980,7 +82136,7 @@
}
},
{
- "id": 894,
+ "id": 895,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -81990,9 +82146,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 455,
+ "line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L464"
}
],
"type": {
@@ -82001,7 +82157,7 @@
}
},
{
- "id": 895,
+ "id": 896,
"name": "is_sso_user",
"variant": "declaration",
"kind": 1024,
@@ -82011,9 +82167,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 456,
+ "line": 465,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L465"
}
],
"type": {
@@ -82022,7 +82178,7 @@
}
},
{
- "id": 890,
+ "id": 891,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -82032,9 +82188,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 451,
+ "line": 460,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L460"
}
],
"type": {
@@ -82043,7 +82199,7 @@
}
},
{
- "id": 880,
+ "id": 881,
"name": "new_email",
"variant": "declaration",
"kind": 1024,
@@ -82053,9 +82209,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 441,
+ "line": 450,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L450"
}
],
"type": {
@@ -82064,7 +82220,7 @@
}
},
{
- "id": 881,
+ "id": 882,
"name": "new_phone",
"variant": "declaration",
"kind": 1024,
@@ -82074,9 +82230,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 442,
+ "line": 451,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L451"
}
],
"type": {
@@ -82085,7 +82241,7 @@
}
},
{
- "id": 885,
+ "id": 886,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -82095,9 +82251,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 446,
+ "line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L455"
}
],
"type": {
@@ -82106,7 +82262,7 @@
}
},
{
- "id": 889,
+ "id": 890,
"name": "phone_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -82116,9 +82272,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 450,
+ "line": 459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L459"
}
],
"type": {
@@ -82127,7 +82283,7 @@
}
},
{
- "id": 878,
+ "id": 879,
"name": "recovery_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -82137,9 +82293,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 439,
+ "line": 448,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L448"
}
],
"type": {
@@ -82148,7 +82304,7 @@
}
},
{
- "id": 891,
+ "id": 892,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -82158,9 +82314,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 452,
+ "line": 461,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L461"
}
],
"type": {
@@ -82169,7 +82325,7 @@
}
},
{
- "id": 892,
+ "id": 893,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -82179,9 +82335,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 453,
+ "line": 462,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L462"
}
],
"type": {
@@ -82190,7 +82346,7 @@
}
},
{
- "id": 875,
+ "id": 876,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -82198,14 +82354,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 436,
+ "line": 445,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L445"
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -82215,29 +82371,29 @@
{
"title": "Properties",
"children": [
- 883, 874, 876, 898, 877, 887, 886, 897, 884, 879, 888, 896, 873, 893, 882, 894, 895,
- 890, 880, 881, 885, 889, 878, 891, 892, 875
+ 884, 875, 877, 899, 878, 888, 887, 898, 885, 880, 889, 897, 874, 894, 883, 895, 896,
+ 891, 881, 882, 886, 890, 879, 892, 893, 876
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 433,
+ "line": 442,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L433"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L442"
}
]
},
{
- "id": 864,
+ "id": 865,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 865,
+ "id": 866,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -82255,9 +82411,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 421,
+ "line": 430,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L430"
}
],
"type": {
@@ -82266,7 +82422,7 @@
}
},
{
- "id": 866,
+ "id": 867,
"name": "providers",
"variant": "declaration",
"kind": 1024,
@@ -82284,9 +82440,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 425,
+ "line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L425"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L434"
}
],
"type": {
@@ -82301,20 +82457,20 @@
"groups": [
{
"title": "Properties",
- "children": [865, 866]
+ "children": [866, 867]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 417,
+ "line": 426,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L417"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L426"
}
],
"indexSignatures": [
{
- "id": 867,
+ "id": 868,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -82322,14 +82478,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 426,
+ "line": 435,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L435"
}
],
"parameters": [
{
- "id": 868,
+ "id": 869,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -82348,14 +82504,14 @@
]
},
{
- "id": 899,
+ "id": 900,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 904,
+ "id": 905,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -82389,9 +82545,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 491,
+ "line": 500,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L500"
}
],
"type": {
@@ -82400,7 +82556,7 @@
}
},
{
- "id": 900,
+ "id": 901,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -82418,9 +82574,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 466,
+ "line": 475,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L466"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L475"
}
],
"type": {
@@ -82429,7 +82585,7 @@
}
},
{
- "id": 903,
+ "id": 904,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -82447,9 +82603,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 483,
+ "line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L492"
}
],
"type": {
@@ -82458,7 +82614,7 @@
}
},
{
- "id": 902,
+ "id": 903,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -82476,9 +82632,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 476,
+ "line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -82487,7 +82643,7 @@
}
},
{
- "id": 901,
+ "id": 902,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -82505,9 +82661,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 471,
+ "line": 480,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L480"
}
],
"type": {
@@ -82519,27 +82675,27 @@
"groups": [
{
"title": "Properties",
- "children": [904, 900, 903, 902, 901]
+ "children": [905, 901, 904, 903, 902]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 462,
+ "line": 471,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L462"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L471"
}
]
},
{
- "id": 840,
+ "id": 841,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 849,
+ "id": 850,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -82549,9 +82705,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 366,
+ "line": 375,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L366"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L375"
}
],
"type": {
@@ -82560,7 +82716,7 @@
}
},
{
- "id": 841,
+ "id": 842,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -82568,9 +82724,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 359,
+ "line": 368,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L368"
}
],
"type": {
@@ -82579,7 +82735,7 @@
}
},
{
- "id": 843,
+ "id": 844,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -82589,15 +82745,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 361,
+ "line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L370"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 844,
+ "id": 845,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -82605,14 +82761,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 361,
+ "line": 370,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L370"
}
],
"indexSignatures": [
{
- "id": 845,
+ "id": 846,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -82620,14 +82776,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 362,
+ "line": 371,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L362"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L371"
}
],
"parameters": [
{
- "id": 846,
+ "id": 847,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -82648,7 +82804,7 @@
}
},
{
- "id": 847,
+ "id": 848,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -82656,9 +82812,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 364,
+ "line": 373,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L364"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L373"
}
],
"type": {
@@ -82667,7 +82823,7 @@
}
},
{
- "id": 850,
+ "id": 851,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -82677,9 +82833,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 367,
+ "line": 376,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L367"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L376"
}
],
"type": {
@@ -82688,7 +82844,7 @@
}
},
{
- "id": 848,
+ "id": 849,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -82696,9 +82852,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 365,
+ "line": 374,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L365"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L374"
}
],
"type": {
@@ -82707,7 +82863,7 @@
}
},
{
- "id": 851,
+ "id": 852,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -82717,9 +82873,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 368,
+ "line": 377,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L368"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L377"
}
],
"type": {
@@ -82728,7 +82884,7 @@
}
},
{
- "id": 842,
+ "id": 843,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -82736,9 +82892,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 360,
+ "line": 369,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L369"
}
],
"type": {
@@ -82750,20 +82906,20 @@
"groups": [
{
"title": "Properties",
- "children": [849, 841, 843, 847, 850, 848, 851, 842]
+ "children": [850, 842, 844, 848, 851, 849, 852, 843]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 358,
+ "line": 367,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L367"
}
]
},
{
- "id": 869,
+ "id": 870,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -82771,14 +82927,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 429,
+ "line": 438,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L438"
}
],
"indexSignatures": [
{
- "id": 870,
+ "id": 871,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -82786,14 +82942,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 430,
+ "line": 439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L439"
}
],
"parameters": [
{
- "id": 871,
+ "id": 872,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -82812,14 +82968,14 @@
]
},
{
- "id": 1048,
+ "id": 1049,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1049,
+ "id": 1050,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -82835,9 +82991,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 798,
+ "line": 807,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L798"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L807"
}
],
"type": {
@@ -82846,7 +83002,7 @@
}
},
{
- "id": 1052,
+ "id": 1053,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -82856,22 +83012,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 803,
+ "line": 812,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L812"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1053,
+ "id": 1054,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1055,
+ "id": 1056,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -82895,9 +83051,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 811,
+ "line": 820,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L811"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L820"
}
],
"type": {
@@ -82906,7 +83062,7 @@
}
},
{
- "id": 1054,
+ "id": 1055,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -82924,9 +83080,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 805,
+ "line": 814,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L805"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L814"
}
],
"type": {
@@ -82938,22 +83094,22 @@
"groups": [
{
"title": "Properties",
- "children": [1055, 1054]
+ "children": [1056, 1055]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 803,
+ "line": 812,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L812"
}
]
}
}
},
{
- "id": 1050,
+ "id": 1051,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -82969,9 +83125,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 800,
+ "line": 809,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L800"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L809"
}
],
"type": {
@@ -82980,7 +83136,7 @@
}
},
{
- "id": 1051,
+ "id": 1052,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -82996,14 +83152,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 802,
+ "line": 811,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L802"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L811"
}
],
"type": {
"type": "reference",
- "target": 1060,
+ "target": 1061,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -83012,27 +83168,27 @@
"groups": [
{
"title": "Properties",
- "children": [1049, 1052, 1050, 1051]
+ "children": [1050, 1053, 1051, 1052]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 796,
+ "line": 805,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L796"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L805"
}
]
},
{
- "id": 1040,
+ "id": 1041,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1044,
+ "id": 1045,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -83042,22 +83198,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 784,
+ "line": 793,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L784"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L793"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1045,
+ "id": 1046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1047,
+ "id": 1048,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -83081,9 +83237,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 793,
+ "line": 802,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L793"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L802"
}
],
"type": {
@@ -83092,7 +83248,7 @@
}
},
{
- "id": 1046,
+ "id": 1047,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -83110,9 +83266,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 786,
+ "line": 795,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L795"
}
],
"type": {
@@ -83124,22 +83280,22 @@
"groups": [
{
"title": "Properties",
- "children": [1047, 1046]
+ "children": [1048, 1047]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 784,
+ "line": 793,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L784"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L793"
}
]
}
}
},
{
- "id": 1041,
+ "id": 1042,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -83155,9 +83311,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 779,
+ "line": 788,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L779"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L788"
}
],
"type": {
@@ -83166,7 +83322,7 @@
}
},
{
- "id": 1042,
+ "id": 1043,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -83182,9 +83338,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 781,
+ "line": 790,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L790"
}
],
"type": {
@@ -83193,7 +83349,7 @@
}
},
{
- "id": 1043,
+ "id": 1044,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -83209,14 +83365,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 783,
+ "line": 792,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L783"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L792"
}
],
"type": {
"type": "reference",
- "target": 1059,
+ "target": 1060,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -83225,27 +83381,27 @@
"groups": [
{
"title": "Properties",
- "children": [1044, 1041, 1042, 1043]
+ "children": [1045, 1042, 1043, 1044]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 777,
+ "line": 786,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L786"
}
]
},
{
- "id": 1056,
+ "id": 1057,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1057,
+ "id": 1058,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -83261,9 +83417,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 817,
+ "line": 826,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L826"
}
],
"type": {
@@ -83272,7 +83428,7 @@
}
},
{
- "id": 1058,
+ "id": 1059,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -83288,14 +83444,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 820,
+ "line": 829,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L829"
}
],
"type": {
"type": "reference",
- "target": 1060,
+ "target": 1061,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -83304,20 +83460,20 @@
"groups": [
{
"title": "Properties",
- "children": [1057, 1058]
+ "children": [1058, 1059]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 815,
+ "line": 824,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L815"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L824"
}
]
},
{
- "id": 835,
+ "id": 836,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -83325,9 +83481,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 333,
+ "line": 342,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L342"
}
],
"type": {
@@ -83363,7 +83519,7 @@
{
"type": "reflection",
"declaration": {
- "id": 836,
+ "id": 837,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -83371,9 +83527,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 333,
+ "line": 342,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L342"
}
]
}
@@ -83394,7 +83550,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 47,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L47"
}
],
"type": {
@@ -83444,7 +83600,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 45,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L45"
}
],
"type": {
@@ -83453,7 +83609,7 @@
}
},
{
- "id": 1169,
+ "id": 1170,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -83461,9 +83617,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1209,
+ "line": 1218,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1218"
}
],
"type": {
@@ -83481,7 +83637,7 @@
}
},
{
- "id": 964,
+ "id": 965,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -83489,9 +83645,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 658,
+ "line": 667,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L658"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L667"
}
],
"type": {
@@ -83509,7 +83665,7 @@
}
},
{
- "id": 1296,
+ "id": 1297,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -83526,22 +83682,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1327,
+ "line": 1336,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1336"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1297,
+ "id": 1298,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1298,
+ "id": 1299,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -83557,9 +83713,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1329,
+ "line": 1338,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1329"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1338"
}
],
"type": {
@@ -83568,7 +83724,7 @@
}
},
{
- "id": 1299,
+ "id": 1300,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -83584,9 +83740,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1332,
+ "line": 1341,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1332"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1341"
}
],
"type": {
@@ -83598,22 +83754,22 @@
"groups": [
{
"title": "Properties",
- "children": [1298, 1299]
+ "children": [1299, 1300]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1327,
+ "line": 1336,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1336"
}
]
}
}
},
{
- "id": 1293,
+ "id": 1294,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -83630,26 +83786,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1320,
+ "line": 1329,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1320"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1329"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1294,
+ "id": 1295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1295,
+ "id": 1296,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -83665,9 +83821,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1322,
+ "line": 1331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1331"
}
],
"type": {
@@ -83679,15 +83835,15 @@
"groups": [
{
"title": "Properties",
- "children": [1295]
+ "children": [1296]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1320,
+ "line": 1329,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1320"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1329"
}
]
}
@@ -83698,7 +83854,7 @@
}
},
{
- "id": 1303,
+ "id": 1304,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -83715,22 +83871,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1346,
+ "line": 1355,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1355"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1304,
+ "id": 1305,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1305,
+ "id": 1306,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -83746,9 +83902,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1348,
+ "line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1348"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -83760,22 +83916,22 @@
"groups": [
{
"title": "Properties",
- "children": [1305]
+ "children": [1306]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1346,
+ "line": 1355,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1355"
}
]
}
}
},
{
- "id": 1300,
+ "id": 1301,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -83792,26 +83948,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1338,
+ "line": 1347,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1347"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1301,
+ "id": 1302,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1302,
+ "id": 1303,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -83827,16 +83983,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1340,
+ "line": 1349,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1340"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1349"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 853,
+ "target": 854,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -83846,15 +84002,15 @@
"groups": [
{
"title": "Properties",
- "children": [1302]
+ "children": [1303]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1338,
+ "line": 1347,
"character": 60,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1347"
}
]
}
@@ -83865,7 +84021,7 @@
}
},
{
- "id": 1160,
+ "id": 1161,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -83873,18 +84029,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1139,
+ "line": 1148,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1148"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -83925,7 +84081,7 @@
}
},
{
- "id": 1164,
+ "id": 1165,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -83933,9 +84089,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1191,
+ "line": 1200,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1191"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1200"
}
],
"type": {
@@ -83943,19 +84099,19 @@
"types": [
{
"type": "reference",
- "target": 1159,
+ "target": 1160,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1160,
+ "target": 1161,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1161,
+ "target": 1162,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -83963,7 +84119,7 @@
}
},
{
- "id": 1159,
+ "id": 1160,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -83971,18 +84127,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1131,
+ "line": 1140,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1140"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -84023,7 +84179,7 @@
}
},
{
- "id": 1161,
+ "id": 1162,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -84052,18 +84208,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1160,
+ "line": 1169,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1160"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1169"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -84104,7 +84260,7 @@
}
},
{
- "id": 1162,
+ "id": 1163,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -84120,14 +84276,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1180,
+ "line": 1189,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1189"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -84164,7 +84320,7 @@
}
},
{
- "id": 1163,
+ "id": 1164,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -84180,18 +84336,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1188,
+ "line": 1197,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1197"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1162,
+ "target": 1163,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -84201,7 +84357,7 @@
}
},
{
- "id": 1338,
+ "id": 1339,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -84209,18 +84365,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1502,
+ "line": 1511,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1511"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -84261,7 +84417,7 @@
}
},
{
- "id": 1155,
+ "id": 1156,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -84269,9 +84425,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1106,
+ "line": 1115,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1115"
}
],
"type": {
@@ -84279,19 +84435,19 @@
"types": [
{
"type": "reference",
- "target": 1337,
+ "target": 1338,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1338,
+ "target": 1339,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1339,
+ "target": 1340,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -84299,7 +84455,7 @@
}
},
{
- "id": 1337,
+ "id": 1338,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -84307,18 +84463,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1493,
+ "line": 1502,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1502"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -84359,7 +84515,7 @@
}
},
{
- "id": 1339,
+ "id": 1340,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -84388,18 +84544,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1515,
+ "line": 1524,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1515"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1524"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -84440,7 +84596,7 @@
}
},
{
- "id": 1170,
+ "id": 1171,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -84448,26 +84604,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1211,
+ "line": 1220,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1220"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1171,
+ "id": 1172,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1174,
+ "id": 1175,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -84483,9 +84639,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1232,
+ "line": 1241,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1232"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1241"
}
],
"type": {
@@ -84495,7 +84651,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 837,
+ "target": 838,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
@@ -84511,7 +84667,7 @@
}
},
{
- "id": 1172,
+ "id": 1173,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -84527,9 +84683,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1213,
+ "line": 1222,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1222"
}
],
"type": {
@@ -84537,7 +84693,7 @@
"types": [
{
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -84549,7 +84705,7 @@
}
},
{
- "id": 1173,
+ "id": 1174,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -84569,7 +84725,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1196
+ "target": 1197
}
]
}
@@ -84578,9 +84734,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1221,
+ "line": 1230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1221"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1230"
}
],
"type": {
@@ -84588,7 +84744,7 @@
"types": [
{
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -84603,15 +84759,15 @@
"groups": [
{
"title": "Properties",
- "children": [1174, 1172, 1173]
+ "children": [1175, 1173, 1174]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1211,
+ "line": 1220,
"character": 74,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1220"
}
]
}
@@ -84622,7 +84778,7 @@
}
},
{
- "id": 1165,
+ "id": 1166,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -84638,14 +84794,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1197,
+ "line": 1206,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1206"
}
],
"typeParameters": [
{
- "id": 1168,
+ "id": 1169,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -84680,7 +84836,7 @@
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "intersection",
@@ -84688,14 +84844,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1166,
+ "id": 1167,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1167,
+ "id": 1168,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -84711,20 +84867,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1201,
+ "line": 1210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1210"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "reference",
- "target": 853,
+ "target": 854,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -84738,15 +84894,15 @@
"groups": [
{
"title": "Properties",
- "children": [1167]
+ "children": [1168]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1199,
+ "line": 1208,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1208"
}
]
}
@@ -84762,7 +84918,7 @@
},
"objectType": {
"type": "reference",
- "target": 1168,
+ "target": 1169,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -84772,11 +84928,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "reference",
- "target": 853,
+ "target": 854,
"typeArguments": [
{
"type": "reference",
@@ -84810,7 +84966,7 @@
}
},
{
- "id": 1156,
+ "id": 1157,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -84818,26 +84974,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1111,
+ "line": 1120,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1120"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1157,
+ "id": 1158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1158,
+ "id": 1159,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -84853,9 +85009,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1113,
+ "line": 1122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1122"
}
],
"type": {
@@ -84867,15 +85023,15 @@
"groups": [
{
"title": "Properties",
- "children": [1158]
+ "children": [1159]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1111,
+ "line": 1120,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1120"
}
]
}
@@ -84886,7 +85042,7 @@
}
},
{
- "id": 1154,
+ "id": 1155,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -84902,18 +85058,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1104,
+ "line": 1113,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1113"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1147,
+ "target": 1148,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -84923,7 +85079,7 @@
}
},
{
- "id": 1147,
+ "id": 1148,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -84939,22 +85095,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1083,
+ "line": 1092,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1083"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1092"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1148,
+ "id": 1149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1149,
+ "id": 1150,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -84970,9 +85126,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1085,
+ "line": 1094,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1085"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1094"
}
],
"type": {
@@ -84981,7 +85137,7 @@
}
},
{
- "id": 1151,
+ "id": 1152,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -84997,9 +85153,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1091,
+ "line": 1100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1091"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1100"
}
],
"type": {
@@ -85008,7 +85164,7 @@
}
},
{
- "id": 1152,
+ "id": 1153,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -85024,9 +85180,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1094,
+ "line": 1103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1094"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1103"
}
],
"type": {
@@ -85035,7 +85191,7 @@
}
},
{
- "id": 1150,
+ "id": 1151,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -85059,9 +85215,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1088,
+ "line": 1097,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1088"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1097"
}
],
"type": {
@@ -85070,7 +85226,7 @@
}
},
{
- "id": 1153,
+ "id": 1154,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -85086,14 +85242,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1097,
+ "line": 1106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1097"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1106"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -85102,22 +85258,22 @@
"groups": [
{
"title": "Properties",
- "children": [1149, 1151, 1152, 1150, 1153]
+ "children": [1150, 1152, 1153, 1151, 1154]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1083,
+ "line": 1092,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1083"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1092"
}
]
}
}
},
{
- "id": 1474,
+ "id": 1475,
"name": "AuthOAuthAuthorizationDetailsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -85144,27 +85300,27 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1835,
+ "line": 1844,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1835"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1844"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "union",
"types": [
{
"type": "reference",
- "target": 1461,
+ "target": 1462,
"name": "OAuthAuthorizationDetails",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1471,
+ "target": 1472,
"name": "OAuthRedirect",
"package": "@supabase/auth-js"
}
@@ -85176,7 +85332,7 @@
}
},
{
- "id": 1475,
+ "id": 1476,
"name": "AuthOAuthConsentResponse",
"variant": "declaration",
"kind": 2097152,
@@ -85192,18 +85348,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1843,
+ "line": 1852,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1843"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1852"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1471,
+ "target": 1472,
"name": "OAuthRedirect",
"package": "@supabase/auth-js"
}
@@ -85213,7 +85369,7 @@
}
},
{
- "id": 1481,
+ "id": 1482,
"name": "AuthOAuthGrantsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -85229,20 +85385,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1862,
+ "line": 1871,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1862"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1871"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "array",
"elementType": {
"type": "reference",
- "target": 1476,
+ "target": 1477,
"name": "OAuthGrant",
"package": "@supabase/auth-js"
}
@@ -85253,7 +85409,7 @@
}
},
{
- "id": 1482,
+ "id": 1483,
"name": "AuthOAuthRevokeGrantResponse",
"variant": "declaration",
"kind": 2097152,
@@ -85269,19 +85425,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1868,
+ "line": 1877,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1868"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1877"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1483,
+ "id": 1484,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -85289,9 +85445,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1868,
+ "line": 1877,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1868"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1877"
}
]
}
@@ -85302,7 +85458,7 @@
}
},
{
- "id": 793,
+ "id": 794,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -85323,26 +85479,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 236,
+ "line": 245,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L245"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 794,
+ "id": 795,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 797,
+ "id": 798,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -85352,9 +85508,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 239,
+ "line": 248,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L248"
}
],
"type": {
@@ -85372,7 +85528,7 @@
}
},
{
- "id": 796,
+ "id": 797,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -85380,9 +85536,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 238,
+ "line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L247"
}
],
"type": {
@@ -85391,7 +85547,7 @@
}
},
{
- "id": 795,
+ "id": 796,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -85399,9 +85555,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 237,
+ "line": 246,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L246"
}
],
"type": {
@@ -85413,15 +85569,15 @@
"groups": [
{
"title": "Properties",
- "children": [797, 796, 795]
+ "children": [798, 797, 796]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 236,
+ "line": 245,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L245"
}
]
}
@@ -85432,7 +85588,7 @@
}
},
{
- "id": 784,
+ "id": 785,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -85440,26 +85596,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 220,
+ "line": 229,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L229"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 785,
+ "id": 786,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 787,
+ "id": 788,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -85467,9 +85623,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 222,
+ "line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L231"
}
],
"type": {
@@ -85477,7 +85633,7 @@
"types": [
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -85489,7 +85645,7 @@
}
},
{
- "id": 786,
+ "id": 787,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -85497,9 +85653,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 221,
+ "line": 230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L230"
}
],
"type": {
@@ -85507,7 +85663,7 @@
"types": [
{
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -85522,15 +85678,15 @@
"groups": [
{
"title": "Properties",
- "children": [787, 786]
+ "children": [788, 787]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 220,
+ "line": 229,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L229"
}
]
}
@@ -85541,7 +85697,7 @@
}
},
{
- "id": 788,
+ "id": 789,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -85549,26 +85705,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 225,
+ "line": 234,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L234"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 789,
+ "id": 790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 791,
+ "id": 792,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -85576,9 +85732,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 227,
+ "line": 236,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L236"
}
],
"type": {
@@ -85586,7 +85742,7 @@
"types": [
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -85598,7 +85754,7 @@
}
},
{
- "id": 790,
+ "id": 791,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -85606,9 +85762,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 226,
+ "line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L235"
}
],
"type": {
@@ -85616,7 +85772,7 @@
"types": [
{
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -85628,7 +85784,7 @@
}
},
{
- "id": 792,
+ "id": 793,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -85638,9 +85794,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 228,
+ "line": 237,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L237"
}
],
"type": {
@@ -85648,7 +85804,7 @@
"types": [
{
"type": "reference",
- "target": 758,
+ "target": 759,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -85663,15 +85819,15 @@
"groups": [
{
"title": "Properties",
- "children": [791, 790, 792]
+ "children": [792, 791, 793]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 225,
+ "line": 234,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L234"
}
]
}
@@ -85682,7 +85838,7 @@
}
},
{
- "id": 798,
+ "id": 799,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -85690,26 +85846,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 242,
+ "line": 251,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L251"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 799,
+ "id": 800,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 801,
+ "id": 802,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -85717,20 +85873,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 244,
+ "line": 253,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L253"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 800,
+ "id": 801,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -85738,14 +85894,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 243,
+ "line": 252,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L252"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -85754,15 +85910,15 @@
"groups": [
{
"title": "Properties",
- "children": [801, 800]
+ "children": [802, 801]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 242,
+ "line": 251,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L251"
}
]
}
@@ -85773,7 +85929,7 @@
}
},
{
- "id": 802,
+ "id": 803,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -85781,26 +85937,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 247,
+ "line": 256,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L256"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 803,
+ "id": 804,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 805,
+ "id": 806,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -85808,20 +85964,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 249,
+ "line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L258"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 804,
+ "id": 805,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -85829,20 +85985,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 248,
+ "line": 257,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L257"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
},
{
- "id": 806,
+ "id": 807,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -85852,14 +86008,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 250,
+ "line": 259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L259"
}
],
"type": {
"type": "reference",
- "target": 758,
+ "target": 759,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -85868,15 +86024,15 @@
"groups": [
{
"title": "Properties",
- "children": [805, 804, 806]
+ "children": [806, 805, 807]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 247,
+ "line": 256,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L256"
}
]
}
@@ -85887,7 +86043,7 @@
}
},
{
- "id": 1319,
+ "id": 1320,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -85895,18 +86051,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1398,
+ "line": 1407,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1398"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1407"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -85916,7 +86072,7 @@
}
},
{
- "id": 1404,
+ "id": 1405,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -85932,22 +86088,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1644,
+ "line": 1653,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1644"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1653"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1405,
+ "id": 1406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1406,
+ "id": 1407,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -85963,9 +86119,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1646,
+ "line": 1655,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1646"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1655"
}
],
"type": {
@@ -85974,7 +86130,7 @@
}
},
{
- "id": 1407,
+ "id": 1408,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -85992,9 +86148,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1648,
+ "line": 1657,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1648"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1657"
}
],
"type": {
@@ -86003,7 +86159,7 @@
}
},
{
- "id": 1409,
+ "id": 1410,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -86021,23 +86177,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1652,
+ "line": 1661,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1384,
+ "target": 1385,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1408,
+ "id": 1409,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -86053,9 +86209,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1650,
+ "line": 1659,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1659"
}
],
"type": {
@@ -86067,7 +86223,7 @@
}
},
{
- "id": 1410,
+ "id": 1411,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -86085,23 +86241,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1654,
+ "line": 1663,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1654"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1663"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1385,
+ "target": 1386,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1411,
+ "id": 1412,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -86119,9 +86275,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1656,
+ "line": 1665,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1665"
}
],
"type": {
@@ -86133,22 +86289,22 @@
"groups": [
{
"title": "Properties",
- "children": [1406, 1407, 1409, 1408, 1410, 1411]
+ "children": [1407, 1408, 1410, 1409, 1411, 1412]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1644,
+ "line": 1653,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1644"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1653"
}
]
}
}
},
{
- "id": 1060,
+ "id": 1061,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -86156,9 +86312,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 824,
+ "line": 833,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L824"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L833"
}
],
"type": {
@@ -86192,7 +86348,7 @@
}
},
{
- "id": 1020,
+ "id": 1021,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -86200,9 +86356,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 735,
+ "line": 744,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L744"
}
],
"type": {
@@ -86216,7 +86372,7 @@
}
},
{
- "id": 1021,
+ "id": 1022,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -86224,9 +86380,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 737,
+ "line": 746,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L737"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L746"
}
],
"type": {
@@ -86235,14 +86391,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1022,
+ "id": 1023,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1023,
+ "id": 1024,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -86250,9 +86406,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 739,
+ "line": 748,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L739"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L748"
}
],
"type": {
@@ -86261,7 +86417,7 @@
}
},
{
- "id": 1026,
+ "id": 1027,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -86271,22 +86427,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 747,
+ "line": 756,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L747"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L756"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1027,
+ "id": 1028,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1029,
+ "id": 1030,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -86304,9 +86460,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 752,
+ "line": 761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L752"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L761"
}
],
"type": {
@@ -86315,7 +86471,7 @@
}
},
{
- "id": 1030,
+ "id": 1031,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -86325,9 +86481,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 754,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L754"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L763"
}
],
"type": {
@@ -86384,7 +86540,7 @@
}
},
{
- "id": 1028,
+ "id": 1029,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -86402,9 +86558,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 749,
+ "line": 758,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L749"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L758"
}
],
"type": {
@@ -86416,22 +86572,22 @@
"groups": [
{
"title": "Properties",
- "children": [1029, 1030, 1028]
+ "children": [1030, 1031, 1029]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 747,
+ "line": 756,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L747"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L756"
}
]
}
}
},
{
- "id": 1025,
+ "id": 1026,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -86449,9 +86605,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 745,
+ "line": 754,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L745"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L754"
}
],
"type": {
@@ -86460,7 +86616,7 @@
}
},
{
- "id": 1024,
+ "id": 1025,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -86486,14 +86642,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 742,
+ "line": 751,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L751"
}
],
"type": {
"type": "reference",
- "target": 1020,
+ "target": 1021,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -86502,15 +86658,15 @@
"groups": [
{
"title": "Properties",
- "children": [1023, 1026, 1025, 1024]
+ "children": [1024, 1027, 1026, 1025]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 738,
+ "line": 747,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L738"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L747"
}
]
}
@@ -86518,14 +86674,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1031,
+ "id": 1032,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1032,
+ "id": 1033,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -86533,9 +86689,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 760,
+ "line": 769,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L760"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L769"
}
],
"type": {
@@ -86544,7 +86700,7 @@
}
},
{
- "id": 1033,
+ "id": 1034,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -86584,9 +86740,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 763,
+ "line": 772,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L763"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L772"
}
],
"type": {
@@ -86595,7 +86751,7 @@
}
},
{
- "id": 1035,
+ "id": 1036,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -86605,22 +86761,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 768,
+ "line": 777,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L768"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L777"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1036,
+ "id": 1037,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1037,
+ "id": 1038,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -86638,9 +86794,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 770,
+ "line": 779,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L770"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L779"
}
],
"type": {
@@ -86652,22 +86808,22 @@
"groups": [
{
"title": "Properties",
- "children": [1037]
+ "children": [1038]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 768,
+ "line": 777,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L768"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L777"
}
]
}
}
},
{
- "id": 1034,
+ "id": 1035,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -86683,9 +86839,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 766,
+ "line": 775,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L766"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L775"
}
],
"type": {
@@ -86702,15 +86858,15 @@
"groups": [
{
"title": "Properties",
- "children": [1032, 1033, 1035, 1034]
+ "children": [1033, 1034, 1036, 1035]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 759,
+ "line": 768,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L768"
}
]
}
@@ -86719,7 +86875,7 @@
}
},
{
- "id": 853,
+ "id": 854,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -86743,7 +86899,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1176
+ "target": 1177
},
{
"kind": "text",
@@ -86757,7 +86913,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1287
+ "target": 1288
},
{
"kind": "text",
@@ -86783,33 +86939,33 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 392,
+ "line": 401,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L401"
}
],
"typeParameters": [
{
- "id": 862,
+ "id": 863,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 852,
+ "target": 853,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 852,
+ "target": 853,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 863,
+ "id": 864,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -86848,14 +87004,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 854,
+ "id": 855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 859,
+ "id": 860,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -86863,9 +87019,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 412,
+ "line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L412"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L421"
}
],
"type": {
@@ -86874,7 +87030,7 @@
}
},
{
- "id": 857,
+ "id": 858,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -86906,21 +87062,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 405,
+ "line": 414,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L405"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L414"
}
],
"type": {
"type": "reference",
- "target": 862,
+ "target": 863,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 856,
+ "id": 857,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -86938,9 +87094,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 400,
+ "line": 409,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L409"
}
],
"type": {
@@ -86949,7 +87105,7 @@
}
},
{
- "id": 855,
+ "id": 856,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -86965,9 +87121,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 397,
+ "line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L406"
}
],
"type": {
@@ -86976,7 +87132,7 @@
}
},
{
- "id": 861,
+ "id": 862,
"name": "last_challenged_at",
"variant": "declaration",
"kind": 1024,
@@ -86986,9 +87142,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 414,
+ "line": 423,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L423"
}
],
"type": {
@@ -86997,7 +87153,7 @@
}
},
{
- "id": 858,
+ "id": 859,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -87041,21 +87197,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 410,
+ "line": 419,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L419"
}
],
"type": {
"type": "reference",
- "target": 863,
+ "target": 864,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 860,
+ "id": 861,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -87063,9 +87219,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 413,
+ "line": 422,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L413"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L422"
}
],
"type": {
@@ -87077,22 +87233,22 @@
"groups": [
{
"title": "Properties",
- "children": [859, 857, 856, 855, 861, 858, 860]
+ "children": [860, 858, 857, 856, 862, 859, 861]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 395,
+ "line": 404,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L395"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L404"
}
]
}
}
},
{
- "id": 852,
+ "id": 853,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -87124,9 +87280,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 376,
+ "line": 385,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L376"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L385"
}
],
"type": {
@@ -87151,7 +87307,7 @@
}
},
{
- "id": 1106,
+ "id": 1107,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -87159,22 +87315,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 903,
+ "line": 912,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1107,
+ "id": 1108,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1109,
+ "id": 1110,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -87190,9 +87346,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 906,
+ "line": 915,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L906"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L915"
}
],
"type": {
@@ -87201,7 +87357,7 @@
}
},
{
- "id": 1110,
+ "id": 1111,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -87217,9 +87373,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 910,
+ "line": 919,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L919"
}
],
"type": {
@@ -87228,7 +87384,7 @@
}
},
{
- "id": 1111,
+ "id": 1112,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -87238,9 +87394,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 911,
+ "line": 920,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L911"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L920"
}
],
"type": {
@@ -87252,7 +87408,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -87266,7 +87422,7 @@
}
},
{
- "id": 1108,
+ "id": 1109,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -87274,9 +87430,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 904,
+ "line": 913,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L904"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L913"
}
],
"type": {
@@ -87297,22 +87453,22 @@
"groups": [
{
"title": "Properties",
- "children": [1109, 1110, 1111, 1108]
+ "children": [1110, 1111, 1112, 1109]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 903,
+ "line": 912,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L912"
}
]
}
}
},
{
- "id": 1096,
+ "id": 1097,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -87320,22 +87476,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 889,
+ "line": 898,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L889"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L898"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1097,
+ "id": 1098,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1099,
+ "id": 1100,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -87351,9 +87507,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 892,
+ "line": 901,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L892"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L901"
}
],
"type": {
@@ -87362,7 +87518,7 @@
}
},
{
- "id": 1100,
+ "id": 1101,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -87372,9 +87528,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 893,
+ "line": 902,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L893"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L902"
}
],
"type": {
@@ -87386,7 +87542,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -87409,7 +87565,7 @@
}
},
{
- "id": 1098,
+ "id": 1099,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -87417,9 +87573,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 890,
+ "line": 899,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L890"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L899"
}
],
"type": {
@@ -87440,22 +87596,22 @@
"groups": [
{
"title": "Properties",
- "children": [1099, 1100, 1098]
+ "children": [1100, 1101, 1099]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 889,
+ "line": 898,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L889"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L898"
}
]
}
}
},
{
- "id": 1115,
+ "id": 1116,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -87463,9 +87619,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 925,
+ "line": 934,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L925"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L934"
}
],
"type": {
@@ -87473,25 +87629,25 @@
"types": [
{
"type": "reference",
- "target": 1090,
+ "target": 1091,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1096,
+ "target": 1097,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1101,
+ "target": 1102,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1106,
+ "target": 1107,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -87499,7 +87655,7 @@
}
},
{
- "id": 1120,
+ "id": 1121,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -87515,22 +87671,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 937,
+ "line": 946,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L937"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L946"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1121,
+ "id": 1122,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1122,
+ "id": 1123,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -87546,9 +87702,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 942,
+ "line": 951,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L942"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L951"
}
],
"type": {
@@ -87557,7 +87713,7 @@
}
},
{
- "id": 1123,
+ "id": 1124,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -87573,9 +87729,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 947,
+ "line": 956,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L947"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L956"
}
],
"type": {
@@ -87584,7 +87740,7 @@
}
},
{
- "id": 1124,
+ "id": 1125,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -87600,9 +87756,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 951,
+ "line": 960,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L951"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L960"
}
],
"type": {
@@ -87611,7 +87767,7 @@
}
},
{
- "id": 1125,
+ "id": 1126,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -87627,9 +87783,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 953,
+ "line": 962,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L962"
}
],
"type": {
@@ -87638,7 +87794,7 @@
}
},
{
- "id": 1126,
+ "id": 1127,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -87654,14 +87810,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 955,
+ "line": 964,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L955"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L964"
}
],
"type": {
"type": "reference",
- "target": 1127,
+ "target": 1128,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -87670,22 +87826,22 @@
"groups": [
{
"title": "Properties",
- "children": [1122, 1123, 1124, 1125, 1126]
+ "children": [1123, 1124, 1125, 1126, 1127]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 937,
+ "line": 946,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L937"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L946"
}
]
}
}
},
{
- "id": 1116,
+ "id": 1117,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -87693,26 +87849,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 931,
+ "line": 940,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L940"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1117,
+ "id": 1118,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1118,
+ "id": 1119,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -87720,20 +87876,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 932,
+ "line": 941,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L941"
}
],
"type": {
"type": "reference",
- "target": 1120,
+ "target": 1121,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1119,
+ "id": 1120,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -87741,14 +87897,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 933,
+ "line": 942,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L933"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L942"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -87757,15 +87913,15 @@
"groups": [
{
"title": "Properties",
- "children": [1118, 1119]
+ "children": [1119, 1120]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 931,
+ "line": 940,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L940"
}
]
}
@@ -87776,7 +87932,7 @@
}
},
{
- "id": 1127,
+ "id": 1128,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -87784,9 +87940,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 958,
+ "line": 967,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L967"
}
],
"type": {
@@ -87820,7 +87976,7 @@
}
},
{
- "id": 1101,
+ "id": 1102,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -87828,22 +87984,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 896,
+ "line": 905,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L896"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L905"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1102,
+ "id": 1103,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1104,
+ "id": 1105,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -87859,9 +88015,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 899,
+ "line": 908,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L899"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L908"
}
],
"type": {
@@ -87870,7 +88026,7 @@
}
},
{
- "id": 1105,
+ "id": 1106,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -87880,9 +88036,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 900,
+ "line": 909,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L900"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L909"
}
],
"type": {
@@ -87894,7 +88050,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -87908,7 +88064,7 @@
}
},
{
- "id": 1103,
+ "id": 1104,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -87916,9 +88072,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 897,
+ "line": 906,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L897"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L906"
}
],
"type": {
@@ -87930,22 +88086,22 @@
"groups": [
{
"title": "Properties",
- "children": [1104, 1105, 1103]
+ "children": [1105, 1106, 1104]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 896,
+ "line": 905,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L896"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L905"
}
]
}
}
},
{
- "id": 1090,
+ "id": 1091,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -87953,22 +88109,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 882,
+ "line": 891,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L882"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L891"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1091,
+ "id": 1092,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1093,
+ "id": 1094,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -87976,9 +88132,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 884,
+ "line": 893,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L884"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L893"
}
],
"type": {
@@ -87987,7 +88143,7 @@
}
},
{
- "id": 1095,
+ "id": 1096,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -87997,9 +88153,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 886,
+ "line": 895,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L886"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L895"
}
],
"type": {
@@ -88011,7 +88167,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -88034,7 +88190,7 @@
}
},
{
- "id": 1094,
+ "id": 1095,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -88042,9 +88198,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 885,
+ "line": 894,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L885"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L894"
}
],
"type": {
@@ -88053,7 +88209,7 @@
}
},
{
- "id": 1092,
+ "id": 1093,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -88061,9 +88217,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 883,
+ "line": 892,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L883"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L892"
}
],
"type": {
@@ -88075,15 +88231,15 @@
"groups": [
{
"title": "Properties",
- "children": [1093, 1095, 1094, 1092]
+ "children": [1094, 1096, 1095, 1093]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 882,
+ "line": 891,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L882"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L891"
}
]
}
@@ -88100,7 +88256,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 73,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L73"
}
],
"type": {
@@ -88125,7 +88281,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L102"
}
],
"type": {
@@ -88146,7 +88302,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L120"
}
],
"type": {
@@ -88169,7 +88325,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L120"
}
],
"signatures": [
@@ -88251,7 +88407,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"type": {
@@ -88274,7 +88430,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"signatures": [
@@ -88320,7 +88476,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"indexSignatures": [
@@ -88335,7 +88491,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"parameters": [
@@ -88385,7 +88541,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 116,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L116"
}
],
"type": {
@@ -88411,12 +88567,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L118"
}
],
"type": {
"type": "reference",
- "target": 964,
+ "target": 965,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
@@ -88443,7 +88599,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L131"
}
],
"type": {
@@ -88464,7 +88620,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L77"
}
],
"type": {
@@ -88480,7 +88636,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 77,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L77"
}
],
"indexSignatures": [
@@ -88495,7 +88651,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L77"
}
],
"parameters": [
@@ -88542,7 +88698,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 126,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L126"
}
],
"type": {
@@ -88609,7 +88765,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 172,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L172"
}
],
"type": {
@@ -88630,7 +88786,47 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L104"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 757,
+ "name": "skipAutoInitialize",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If true, skips automatic initialization in constructor. Useful for SSR\ncontexts where initialization timing must be controlled to prevent race\nconditions with HTTP response generation."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@default",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```ts\nfalse\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 181,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -88651,12 +88847,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L106"
}
],
"type": {
"type": "reference",
- "target": 1313,
+ "target": 1314,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -88674,7 +88870,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L79"
}
],
"type": {
@@ -88703,7 +88899,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L136"
}
],
"type": {
@@ -88724,7 +88920,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L75"
}
],
"type": {
@@ -88794,12 +88990,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L114"
}
],
"type": {
"type": "reference",
- "target": 1313,
+ "target": 1314,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -88809,7 +89005,7 @@
{
"title": "Properties",
"children": [
- 742, 748, 734, 746, 747, 754, 729, 753, 756, 743, 744, 733, 755, 728, 745
+ 742, 748, 734, 746, 747, 754, 729, 753, 756, 743, 757, 744, 733, 755, 728, 745
]
}
],
@@ -88818,14 +89014,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 73,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L73"
}
]
}
}
},
{
- "id": 1316,
+ "id": 1317,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -88833,22 +89029,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1396,
+ "line": 1405,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1405"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1317,
+ "id": 1318,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1318,
+ "id": 1319,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -88856,9 +89052,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1396,
+ "line": 1405,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1405"
}
],
"type": {
@@ -88866,7 +89062,7 @@
"types": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -88881,22 +89077,22 @@
"groups": [
{
"title": "Properties",
- "children": [1318]
+ "children": [1319]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1396,
+ "line": 1405,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1405"
}
]
}
}
},
{
- "id": 1340,
+ "id": 1341,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -88904,22 +89100,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1519,
+ "line": 1528,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1519"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1528"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1341,
+ "id": 1342,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1342,
+ "id": 1343,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -88927,9 +89123,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1520,
+ "line": 1529,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1520"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1529"
}
],
"type": {
@@ -88951,7 +89147,7 @@
}
},
{
- "id": 1343,
+ "id": 1344,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -88959,9 +89155,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1521,
+ "line": 1530,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1530"
}
],
"type": {
@@ -88970,7 +89166,7 @@
}
},
{
- "id": 1344,
+ "id": 1345,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -88978,9 +89174,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1522,
+ "line": 1531,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1531"
}
],
"type": {
@@ -88992,15 +89188,15 @@
"groups": [
{
"title": "Properties",
- "children": [1342, 1343, 1344]
+ "children": [1343, 1344, 1345]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1519,
+ "line": 1528,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1519"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1528"
}
]
}
@@ -89034,7 +89230,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 71,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L71"
}
],
"type": {
@@ -89050,7 +89246,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 71,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L71"
}
],
"signatures": [
@@ -89143,7 +89339,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 71,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L71"
}
],
"signatures": [
@@ -89201,7 +89397,7 @@
}
},
{
- "id": 1146,
+ "id": 1147,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -89209,9 +89405,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1077,
+ "line": 1086,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1077"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1086"
}
],
"type": {
@@ -89225,7 +89421,7 @@
}
},
{
- "id": 1145,
+ "id": 1146,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -89233,9 +89429,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1064,
+ "line": 1073,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1064"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1073"
}
],
"type": {
@@ -89243,19 +89439,19 @@
"types": [
{
"type": "reference",
- "target": 1142,
+ "target": 1143,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1143,
+ "target": 1144,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1144,
+ "target": 1145,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -89263,7 +89459,7 @@
}
},
{
- "id": 1143,
+ "id": 1144,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -89271,14 +89467,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1041,
+ "line": 1050,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1041"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1050"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -89309,7 +89505,7 @@
}
},
{
- "id": 1142,
+ "id": 1143,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -89317,14 +89513,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1034,
+ "line": 1043,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1034"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1043"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "reference",
@@ -89341,7 +89537,7 @@
}
},
{
- "id": 1144,
+ "id": 1145,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -89370,14 +89566,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1060,
+ "line": 1069,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1060"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1069"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -89408,7 +89604,7 @@
}
},
{
- "id": 1128,
+ "id": 1129,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -89416,9 +89612,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 966,
+ "line": 975,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L966"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L975"
}
],
"type": {
@@ -89426,19 +89622,19 @@
"types": [
{
"type": "reference",
- "target": 1334,
+ "target": 1335,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1335,
+ "target": 1336,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1336,
+ "target": 1337,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -89446,7 +89642,7 @@
}
},
{
- "id": 1335,
+ "id": 1336,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -89454,14 +89650,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1446,
+ "line": 1455,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1455"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -89498,7 +89694,7 @@
}
},
{
- "id": 1334,
+ "id": 1335,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -89506,14 +89702,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1440,
+ "line": 1449,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1440"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1449"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -89550,7 +89746,7 @@
}
},
{
- "id": 1336,
+ "id": 1337,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -89579,14 +89775,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1459,
+ "line": 1468,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1459"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1468"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -89623,7 +89819,7 @@
}
},
{
- "id": 1141,
+ "id": 1142,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -89631,9 +89827,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1032,
+ "line": 1041,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1032"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1041"
}
],
"type": {
@@ -89658,7 +89854,7 @@
}
},
{
- "id": 1129,
+ "id": 1130,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -89666,22 +89862,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 968,
+ "line": 977,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L968"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L977"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1130,
+ "id": 1131,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1131,
+ "id": 1132,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -89697,9 +89893,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 970,
+ "line": 979,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L970"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L979"
}
],
"type": {
@@ -89711,22 +89907,22 @@
"groups": [
{
"title": "Properties",
- "children": [1131]
+ "children": [1132]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 968,
+ "line": 977,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L968"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L977"
}
]
}
}
},
{
- "id": 1140,
+ "id": 1141,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -89734,9 +89930,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1024,
+ "line": 1033,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1024"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1033"
}
],
"type": {
@@ -89744,19 +89940,19 @@
"types": [
{
"type": "reference",
- "target": 1132,
+ "target": 1133,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1138,
+ "target": 1139,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -89764,7 +89960,7 @@
}
},
{
- "id": 1133,
+ "id": 1134,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -89772,14 +89968,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 989,
+ "line": 998,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L989"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L998"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -89810,7 +90006,7 @@
}
},
{
- "id": 1132,
+ "id": 1133,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -89818,14 +90014,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 985,
+ "line": 994,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L985"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L994"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -89856,7 +90052,7 @@
}
},
{
- "id": 1134,
+ "id": 1135,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -89872,14 +90068,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1011,
+ "line": 1020,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1011"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1020"
}
],
"typeParameters": [
{
- "id": 1137,
+ "id": 1138,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -89923,14 +90119,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1135,
+ "id": 1136,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1136,
+ "id": 1137,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -89938,9 +90134,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1012,
+ "line": 1021,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1012"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1021"
}
],
"type": {
@@ -89964,7 +90160,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1137,
+ "target": 1138,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -89980,22 +90176,22 @@
"groups": [
{
"title": "Properties",
- "children": [1136]
+ "children": [1137]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1011,
+ "line": 1020,
"character": 98,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1011"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1020"
}
]
}
}
},
{
- "id": 1138,
+ "id": 1139,
"name": "MFAVerifyWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -90024,14 +90220,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1021,
+ "line": 1030,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1021"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1030"
}
],
"typeParameters": [
{
- "id": 1139,
+ "id": 1140,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -90074,7 +90270,7 @@
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -90090,11 +90286,11 @@
},
{
"type": "reference",
- "target": 1134,
+ "target": 1135,
"typeArguments": [
{
"type": "reference",
- "target": 1139,
+ "target": 1140,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -90111,7 +90307,7 @@
}
},
{
- "id": 1059,
+ "id": 1060,
"name": "MobileOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -90119,9 +90315,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 823,
+ "line": 832,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L823"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L832"
}
],
"type": {
@@ -90139,7 +90335,7 @@
}
},
{
- "id": 1455,
+ "id": 1456,
"name": "OAuthAuthorizationClient",
"variant": "declaration",
"kind": 2097152,
@@ -90155,22 +90351,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1764,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1764"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1456,
+ "id": 1457,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1457,
+ "id": 1458,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -90186,9 +90382,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1757,
+ "line": 1766,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1766"
}
],
"type": {
@@ -90197,7 +90393,7 @@
}
},
{
- "id": 1460,
+ "id": 1461,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -90213,9 +90409,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1763,
+ "line": 1772,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1763"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1772"
}
],
"type": {
@@ -90224,7 +90420,7 @@
}
},
{
- "id": 1458,
+ "id": 1459,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -90240,9 +90436,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1759,
+ "line": 1768,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1759"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1768"
}
],
"type": {
@@ -90251,7 +90447,7 @@
}
},
{
- "id": 1459,
+ "id": 1460,
"name": "uri",
"variant": "declaration",
"kind": 1024,
@@ -90267,9 +90463,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1761,
+ "line": 1770,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1761"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1770"
}
],
"type": {
@@ -90281,22 +90477,22 @@
"groups": [
{
"title": "Properties",
- "children": [1457, 1460, 1458, 1459]
+ "children": [1458, 1461, 1459, 1460]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1764,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1764"
}
]
}
}
},
{
- "id": 1461,
+ "id": 1462,
"name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
@@ -90328,22 +90524,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1777,
+ "line": 1786,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1786"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1462,
+ "id": 1463,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1463,
+ "id": 1464,
"name": "authorization_id",
"variant": "declaration",
"kind": 1024,
@@ -90359,9 +90555,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1779,
+ "line": 1788,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1779"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1788"
}
],
"type": {
@@ -90370,7 +90566,7 @@
}
},
{
- "id": 1465,
+ "id": 1466,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -90386,20 +90582,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1783,
+ "line": 1792,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1783"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1792"
}
],
"type": {
"type": "reference",
- "target": 1455,
+ "target": 1456,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1464,
+ "id": 1465,
"name": "redirect_uri",
"variant": "declaration",
"kind": 1024,
@@ -90415,9 +90611,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1781,
+ "line": 1790,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1781"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1790"
}
],
"type": {
@@ -90426,7 +90622,7 @@
}
},
{
- "id": 1470,
+ "id": 1471,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -90442,9 +90638,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1792,
+ "line": 1801,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1792"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1801"
}
],
"type": {
@@ -90453,7 +90649,7 @@
}
},
{
- "id": 1466,
+ "id": 1467,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -90469,22 +90665,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1785,
+ "line": 1794,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1794"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1467,
+ "id": 1468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1469,
+ "id": 1470,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -90500,9 +90696,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1789,
+ "line": 1798,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1789"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1798"
}
],
"type": {
@@ -90511,7 +90707,7 @@
}
},
{
- "id": 1468,
+ "id": 1469,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -90527,9 +90723,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1787,
+ "line": 1796,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1787"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1796"
}
],
"type": {
@@ -90541,15 +90737,15 @@
"groups": [
{
"title": "Properties",
- "children": [1469, 1468]
+ "children": [1470, 1469]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1785,
+ "line": 1794,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1794"
}
]
}
@@ -90559,22 +90755,22 @@
"groups": [
{
"title": "Properties",
- "children": [1463, 1465, 1464, 1470, 1466]
+ "children": [1464, 1466, 1465, 1471, 1467]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1777,
+ "line": 1786,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1786"
}
]
}
}
},
{
- "id": 1388,
+ "id": 1389,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -90590,22 +90786,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1609,
+ "line": 1618,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1609"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1618"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1389,
+ "id": 1390,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1390,
+ "id": 1391,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -90621,9 +90817,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1611,
+ "line": 1620,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1611"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1620"
}
],
"type": {
@@ -90632,7 +90828,7 @@
}
},
{
- "id": 1391,
+ "id": 1392,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -90648,9 +90844,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1613,
+ "line": 1622,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1613"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1622"
}
],
"type": {
@@ -90659,7 +90855,7 @@
}
},
{
- "id": 1392,
+ "id": 1393,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -90677,9 +90873,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1615,
+ "line": 1624,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1615"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1624"
}
],
"type": {
@@ -90688,7 +90884,7 @@
}
},
{
- "id": 1393,
+ "id": 1394,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -90704,20 +90900,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1617,
+ "line": 1626,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1617"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1626"
}
],
"type": {
"type": "reference",
- "target": 1386,
+ "target": 1387,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1396,
+ "id": 1397,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -90735,9 +90931,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1623,
+ "line": 1632,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1623"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1632"
}
],
"type": {
@@ -90746,7 +90942,7 @@
}
},
{
- "id": 1402,
+ "id": 1403,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -90762,9 +90958,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1635,
+ "line": 1644,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1635"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1644"
}
],
"type": {
@@ -90773,7 +90969,7 @@
}
},
{
- "id": 1399,
+ "id": 1400,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -90789,23 +90985,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1629,
+ "line": 1638,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1629"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1638"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1384,
+ "target": 1385,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1397,
+ "id": 1398,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -90823,9 +91019,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1625,
+ "line": 1634,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1625"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1634"
}
],
"type": {
@@ -90834,7 +91030,7 @@
}
},
{
- "id": 1398,
+ "id": 1399,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -90850,9 +91046,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1627,
+ "line": 1636,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1627"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1636"
}
],
"type": {
@@ -90864,7 +91060,7 @@
}
},
{
- "id": 1395,
+ "id": 1396,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -90880,20 +91076,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1621,
+ "line": 1630,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1621"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1630"
}
],
"type": {
"type": "reference",
- "target": 1387,
+ "target": 1388,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1400,
+ "id": 1401,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -90909,23 +91105,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1631,
+ "line": 1640,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1631"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1640"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1385,
+ "target": 1386,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1401,
+ "id": 1402,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -90943,9 +91139,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1633,
+ "line": 1642,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1633"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1642"
}
],
"type": {
@@ -90954,7 +91150,7 @@
}
},
{
- "id": 1394,
+ "id": 1395,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -90970,9 +91166,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1619,
+ "line": 1628,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1619"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1628"
}
],
"type": {
@@ -90981,7 +91177,7 @@
}
},
{
- "id": 1403,
+ "id": 1404,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -90997,9 +91193,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1637,
+ "line": 1646,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1637"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1646"
}
],
"type": {
@@ -91012,24 +91208,24 @@
{
"title": "Properties",
"children": [
- 1390, 1391, 1392, 1393, 1396, 1402, 1399, 1397, 1398, 1395, 1400, 1401, 1394,
- 1403
+ 1391, 1392, 1393, 1394, 1397, 1403, 1400, 1398, 1399, 1396, 1401, 1402, 1395,
+ 1404
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1609,
+ "line": 1618,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1609"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1618"
}
]
}
}
},
{
- "id": 1384,
+ "id": 1385,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -91045,9 +91241,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1585,
+ "line": 1594,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1585"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1594"
}
],
"type": {
@@ -91065,7 +91261,7 @@
}
},
{
- "id": 1420,
+ "id": 1421,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -91081,9 +91277,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1687,
+ "line": 1696,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1687"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1696"
}
],
"type": {
@@ -91092,14 +91288,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1421,
+ "id": 1422,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1422,
+ "id": 1423,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91107,9 +91303,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
],
"type": {
@@ -91118,14 +91314,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1423,
+ "id": 1424,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1425,
+ "id": 1426,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -91133,9 +91329,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
],
"type": {
@@ -91144,7 +91340,7 @@
}
},
{
- "id": 1424,
+ "id": 1425,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -91152,16 +91348,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1388,
+ "target": 1389,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -91171,22 +91367,22 @@
"groups": [
{
"title": "Properties",
- "children": [1425, 1424]
+ "children": [1426, 1425]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
]
}
},
{
"type": "reference",
- "target": 1320,
+ "target": 1321,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -91194,7 +91390,7 @@
}
},
{
- "id": 1426,
+ "id": 1427,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91202,9 +91398,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1690,
+ "line": 1699,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1690"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1699"
}
],
"type": {
@@ -91216,15 +91412,15 @@
"groups": [
{
"title": "Properties",
- "children": [1422, 1426]
+ "children": [1423, 1427]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1688,
+ "line": 1697,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1688"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1697"
}
]
}
@@ -91232,14 +91428,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1427,
+ "id": 1428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1428,
+ "id": 1429,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91247,22 +91443,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1693,
+ "line": 1702,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1702"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1429,
+ "id": 1430,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1430,
+ "id": 1431,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -91270,9 +91466,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1693,
+ "line": 1702,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1702"
}
],
"type": {
@@ -91283,22 +91479,22 @@
"groups": [
{
"title": "Properties",
- "children": [1430]
+ "children": [1431]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1693,
+ "line": 1702,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1702"
}
]
}
}
},
{
- "id": 1431,
+ "id": 1432,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91306,14 +91502,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1694,
+ "line": 1703,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1703"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -91322,15 +91518,15 @@
"groups": [
{
"title": "Properties",
- "children": [1428, 1431]
+ "children": [1429, 1432]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1692,
+ "line": 1701,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1692"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1701"
}
]
}
@@ -91339,7 +91535,7 @@
}
},
{
- "id": 1387,
+ "id": 1388,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -91355,9 +91551,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1603,
+ "line": 1612,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1603"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1612"
}
],
"type": {
@@ -91375,7 +91571,7 @@
}
},
{
- "id": 1419,
+ "id": 1420,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -91391,18 +91587,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1681,
+ "line": 1690,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1681"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1690"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1388,
+ "target": 1389,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -91412,7 +91608,7 @@
}
},
{
- "id": 1385,
+ "id": 1386,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -91428,9 +91624,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1591,
+ "line": 1600,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1591"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1600"
}
],
"type": {
@@ -91439,7 +91635,7 @@
}
},
{
- "id": 1386,
+ "id": 1387,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -91455,9 +91651,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1597,
+ "line": 1606,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1597"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1606"
}
],
"type": {
@@ -91475,7 +91671,7 @@
}
},
{
- "id": 1476,
+ "id": 1477,
"name": "OAuthGrant",
"variant": "declaration",
"kind": 2097152,
@@ -91491,22 +91687,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1849,
+ "line": 1858,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1849"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1858"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1477,
+ "id": 1478,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1478,
+ "id": 1479,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -91522,20 +91718,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1851,
+ "line": 1860,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1851"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1860"
}
],
"type": {
"type": "reference",
- "target": 1455,
+ "target": 1456,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1480,
+ "id": 1481,
"name": "granted_at",
"variant": "declaration",
"kind": 1024,
@@ -91551,9 +91747,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1855,
+ "line": 1864,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1855"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1864"
}
],
"type": {
@@ -91562,7 +91758,7 @@
}
},
{
- "id": 1479,
+ "id": 1480,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -91578,9 +91774,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1853,
+ "line": 1862,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1853"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1862"
}
],
"type": {
@@ -91595,22 +91791,22 @@
"groups": [
{
"title": "Properties",
- "children": [1478, 1480, 1479]
+ "children": [1479, 1481, 1480]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1849,
+ "line": 1858,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1849"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1858"
}
]
}
}
},
{
- "id": 1471,
+ "id": 1472,
"name": "OAuthRedirect",
"variant": "declaration",
"kind": 2097152,
@@ -91634,22 +91830,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1808,
+ "line": 1817,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1808"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1817"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1472,
+ "id": 1473,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1473,
+ "id": 1474,
"name": "redirect_url",
"variant": "declaration",
"kind": 1024,
@@ -91665,9 +91861,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1810,
+ "line": 1819,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1810"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1819"
}
],
"type": {
@@ -91679,22 +91875,22 @@
"groups": [
{
"title": "Properties",
- "children": [1473]
+ "children": [1474]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1808,
+ "line": 1817,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1808"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1817"
}
]
}
}
},
{
- "id": 807,
+ "id": 808,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -91702,9 +91898,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 253,
+ "line": 262,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L262"
}
],
"type": {
@@ -91713,14 +91909,14 @@
{
"type": "reflection",
"declaration": {
- "id": 808,
+ "id": 809,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 809,
+ "id": 810,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91728,22 +91924,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 255,
+ "line": 264,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L264"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 810,
+ "id": 811,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 811,
+ "id": 812,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -91751,9 +91947,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 256,
+ "line": 265,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L265"
}
],
"type": {
@@ -91764,7 +91960,7 @@
}
},
{
- "id": 812,
+ "id": 813,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -91772,9 +91968,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 257,
+ "line": 266,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L266"
}
],
"type": {
@@ -91786,22 +91982,22 @@
"groups": [
{
"title": "Properties",
- "children": [811, 812]
+ "children": [812, 813]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 255,
+ "line": 264,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L264"
}
]
}
}
},
{
- "id": 813,
+ "id": 814,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91809,9 +92005,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 259,
+ "line": 268,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L259"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L268"
}
],
"type": {
@@ -91823,15 +92019,15 @@
"groups": [
{
"title": "Properties",
- "children": [809, 813]
+ "children": [810, 814]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 254,
+ "line": 263,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L263"
}
]
}
@@ -91839,14 +92035,14 @@
{
"type": "reflection",
"declaration": {
- "id": 814,
+ "id": 815,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 815,
+ "id": 816,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91854,22 +92050,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 262,
+ "line": 271,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L271"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 816,
+ "id": 817,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 817,
+ "id": 818,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -91877,9 +92073,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 263,
+ "line": 272,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L272"
}
],
"type": {
@@ -91890,7 +92086,7 @@
}
},
{
- "id": 818,
+ "id": 819,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -91898,9 +92094,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 264,
+ "line": 273,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L273"
}
],
"type": {
@@ -91912,22 +92108,22 @@
"groups": [
{
"title": "Properties",
- "children": [817, 818]
+ "children": [818, 819]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 262,
+ "line": 271,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L271"
}
]
}
}
},
{
- "id": 819,
+ "id": 820,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91935,14 +92131,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 266,
+ "line": 275,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L275"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -91951,15 +92147,15 @@
"groups": [
{
"title": "Properties",
- "children": [815, 819]
+ "children": [816, 820]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 261,
+ "line": 270,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L270"
}
]
}
@@ -91968,7 +92164,7 @@
}
},
{
- "id": 1327,
+ "id": 1328,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -91976,22 +92172,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1407,
+ "line": 1416,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1416"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1328,
+ "id": 1329,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1329,
+ "id": 1330,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -92009,9 +92205,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1409,
+ "line": 1418,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1409"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1418"
}
],
"type": {
@@ -92020,7 +92216,7 @@
}
},
{
- "id": 1330,
+ "id": 1331,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -92038,9 +92234,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1411,
+ "line": 1420,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1411"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1420"
}
],
"type": {
@@ -92052,22 +92248,22 @@
"groups": [
{
"title": "Properties",
- "children": [1329, 1330]
+ "children": [1330, 1331]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1407,
+ "line": 1416,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1416"
}
]
}
}
},
{
- "id": 1320,
+ "id": 1321,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -92075,22 +92271,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1400,
+ "line": 1409,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1409"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1321,
+ "id": 1322,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1323,
+ "id": 1324,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -92098,9 +92294,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1403,
+ "line": 1412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1403"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1412"
}
],
"type": {
@@ -92109,7 +92305,7 @@
}
},
{
- "id": 1322,
+ "id": 1323,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -92117,9 +92313,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1402,
+ "line": 1411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1402"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1411"
}
],
"type": {
@@ -92137,7 +92333,7 @@
}
},
{
- "id": 1324,
+ "id": 1325,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -92145,9 +92341,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1404,
+ "line": 1413,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1404"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1413"
}
],
"type": {
@@ -92159,20 +92355,20 @@
"groups": [
{
"title": "Properties",
- "children": [1323, 1322, 1324]
+ "children": [1324, 1323, 1325]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1400,
+ "line": 1409,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1409"
}
],
"indexSignatures": [
{
- "id": 1325,
+ "id": 1326,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -92180,14 +92376,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1401,
+ "line": 1410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1401"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1410"
}
],
"parameters": [
{
- "id": 1326,
+ "id": 1327,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -92208,7 +92404,7 @@
}
},
{
- "id": 762,
+ "id": 763,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -92224,14 +92420,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
],
"typeParameters": [
{
- "id": 763,
+ "id": 764,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -92242,7 +92438,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -92258,7 +92454,7 @@
},
"trueType": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -92271,7 +92467,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -92291,7 +92487,7 @@
},
"objectType": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -92319,7 +92515,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -92456,7 +92652,7 @@
}
},
{
- "id": 767,
+ "id": 768,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -92472,21 +92668,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 199,
+ "line": 208,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L208"
}
],
"typeParameters": [
{
- "id": 774,
+ "id": 775,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 775,
+ "id": 776,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -92502,7 +92698,7 @@
},
"default": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -92514,14 +92710,14 @@
{
"type": "reflection",
"declaration": {
- "id": 768,
+ "id": 769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 769,
+ "id": 770,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -92529,21 +92725,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reference",
- "target": 774,
+ "target": 775,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 770,
+ "id": 771,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -92551,9 +92747,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -92565,15 +92761,15 @@
"groups": [
{
"title": "Properties",
- "children": [769, 770]
+ "children": [770, 771]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 200,
+ "line": 209,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L209"
}
]
}
@@ -92581,14 +92777,14 @@
{
"type": "reflection",
"declaration": {
- "id": 771,
+ "id": 772,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 772,
+ "id": 773,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -92596,9 +92792,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -92607,7 +92803,7 @@
}
},
{
- "id": 773,
+ "id": 774,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -92615,9 +92811,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
@@ -92633,19 +92829,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 775,
+ "target": 776,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -92656,15 +92852,15 @@
"groups": [
{
"title": "Properties",
- "children": [772, 773]
+ "children": [773, 774]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 204,
+ "line": 213,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L213"
}
]
}
@@ -92673,7 +92869,7 @@
}
},
{
- "id": 776,
+ "id": 777,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -92694,14 +92890,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 213,
+ "line": 222,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L222"
}
],
"typeParameters": [
{
- "id": 783,
+ "id": 784,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -92714,14 +92910,14 @@
{
"type": "reflection",
"declaration": {
- "id": 777,
+ "id": 778,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 778,
+ "id": 779,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -92729,21 +92925,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 214,
+ "line": 223,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L223"
}
],
"type": {
"type": "reference",
- "target": 783,
+ "target": 784,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 779,
+ "id": 780,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -92751,9 +92947,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 214,
+ "line": 223,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L223"
}
],
"type": {
@@ -92765,15 +92961,15 @@
"groups": [
{
"title": "Properties",
- "children": [778, 779]
+ "children": [779, 780]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 214,
+ "line": 223,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L223"
}
]
}
@@ -92781,14 +92977,14 @@
{
"type": "reflection",
"declaration": {
- "id": 780,
+ "id": 781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 781,
+ "id": 782,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -92796,16 +92992,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 216,
+ "line": 225,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L225"
}
],
"type": {
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 783,
+ "target": 784,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -92822,7 +93018,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 783,
+ "target": 784,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -92840,7 +93036,7 @@
}
},
{
- "id": 782,
+ "id": 783,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -92848,14 +93044,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 217,
+ "line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L226"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -92864,15 +93060,15 @@
"groups": [
{
"title": "Properties",
- "children": [781, 782]
+ "children": [782, 783]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 215,
+ "line": 224,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L224"
}
]
}
@@ -92881,7 +93077,7 @@
}
},
{
- "id": 1345,
+ "id": 1346,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -92889,22 +93085,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1525,
+ "line": 1534,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1525"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1534"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1346,
+ "id": 1347,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1353,
+ "id": 1354,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -92912,20 +93108,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1532,
+ "line": 1541,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1532"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1541"
}
],
"type": {
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1349,
+ "id": 1350,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -92933,9 +93129,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1528,
+ "line": 1537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1528"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1537"
}
],
"type": {
@@ -92956,7 +93152,7 @@
}
},
{
- "id": 1350,
+ "id": 1351,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -92964,9 +93160,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1529,
+ "line": 1538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1529"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1538"
}
],
"type": {
@@ -92975,7 +93171,7 @@
}
},
{
- "id": 1351,
+ "id": 1352,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -92983,9 +93179,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1530,
+ "line": 1539,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1539"
}
],
"type": {
@@ -92994,7 +93190,7 @@
}
},
{
- "id": 1347,
+ "id": 1348,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -93002,9 +93198,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1526,
+ "line": 1535,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1526"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1535"
}
],
"type": {
@@ -93013,7 +93209,7 @@
}
},
{
- "id": 1352,
+ "id": 1353,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -93021,9 +93217,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1531,
+ "line": 1540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1531"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1540"
}
],
"type": {
@@ -93032,7 +93228,7 @@
}
},
{
- "id": 1354,
+ "id": 1355,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -93040,9 +93236,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1533,
+ "line": 1542,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1533"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1542"
}
],
"type": {
@@ -93051,7 +93247,7 @@
}
},
{
- "id": 1348,
+ "id": 1349,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -93059,9 +93255,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1527,
+ "line": 1536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1536"
}
],
"type": {
@@ -93073,15 +93269,15 @@
"groups": [
{
"title": "Properties",
- "children": [1353, 1349, 1350, 1351, 1347, 1352, 1354, 1348]
+ "children": [1354, 1350, 1351, 1352, 1348, 1353, 1355, 1349]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1525,
+ "line": 1534,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1525"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1534"
}
]
}
@@ -93089,13 +93285,13 @@
"extendedBy": [
{
"type": "reference",
- "target": 1355,
+ "target": 1356,
"name": "JwtPayload"
}
]
},
{
- "id": 1061,
+ "id": 1062,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -93103,9 +93299,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 826,
+ "line": 835,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L826"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L835"
}
],
"type": {
@@ -93114,14 +93310,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1062,
+ "id": 1063,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1064,
+ "id": 1065,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -93129,9 +93325,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 829,
+ "line": 838,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L829"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L838"
}
],
"type": {
@@ -93140,7 +93336,7 @@
}
},
{
- "id": 1065,
+ "id": 1066,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -93150,22 +93346,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 830,
+ "line": 839,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L830"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L839"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1066,
+ "id": 1067,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1068,
+ "id": 1069,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -93183,9 +93379,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 834,
+ "line": 843,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L834"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L843"
}
],
"type": {
@@ -93194,7 +93390,7 @@
}
},
{
- "id": 1067,
+ "id": 1068,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -93212,9 +93408,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 832,
+ "line": 841,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L832"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L841"
}
],
"type": {
@@ -93226,22 +93422,22 @@
"groups": [
{
"title": "Properties",
- "children": [1068, 1067]
+ "children": [1069, 1068]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 830,
+ "line": 839,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L830"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L839"
}
]
}
}
},
{
- "id": 1063,
+ "id": 1064,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -93249,9 +93445,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 828,
+ "line": 837,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L828"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L837"
}
],
"type": {
@@ -93263,7 +93459,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1060,
+ "target": 1061,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -93289,15 +93485,15 @@
"groups": [
{
"title": "Properties",
- "children": [1064, 1065, 1063]
+ "children": [1065, 1066, 1064]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 827,
+ "line": 836,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L827"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L836"
}
]
}
@@ -93305,14 +93501,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1069,
+ "id": 1070,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1072,
+ "id": 1073,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -93322,22 +93518,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 840,
+ "line": 849,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L840"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L849"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1073,
+ "id": 1074,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1074,
+ "id": 1075,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -93355,9 +93551,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 842,
+ "line": 851,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L842"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L851"
}
],
"type": {
@@ -93369,22 +93565,22 @@
"groups": [
{
"title": "Properties",
- "children": [1074]
+ "children": [1075]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 840,
+ "line": 849,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L840"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L849"
}
]
}
}
},
{
- "id": 1071,
+ "id": 1072,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -93392,9 +93588,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 839,
+ "line": 848,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L839"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L848"
}
],
"type": {
@@ -93403,7 +93599,7 @@
}
},
{
- "id": 1070,
+ "id": 1071,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -93411,9 +93607,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 838,
+ "line": 847,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L838"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L847"
}
],
"type": {
@@ -93425,7 +93621,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1059,
+ "target": 1060,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -93451,15 +93647,15 @@
"groups": [
{
"title": "Properties",
- "children": [1072, 1071, 1070]
+ "children": [1073, 1072, 1071]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 837,
+ "line": 846,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L837"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L846"
}
]
}
@@ -93468,7 +93664,7 @@
}
},
{
- "id": 928,
+ "id": 929,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -93476,22 +93672,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 586,
+ "line": 595,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L595"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 929,
+ "id": 930,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 930,
+ "id": 931,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -93501,22 +93697,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 587,
+ "line": 596,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L596"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 931,
+ "id": 932,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 933,
+ "id": 934,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -93534,9 +93730,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 595,
+ "line": 604,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L595"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L604"
}
],
"type": {
@@ -93545,7 +93741,7 @@
}
},
{
- "id": 932,
+ "id": 933,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -93579,9 +93775,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 593,
+ "line": 602,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L593"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L602"
}
],
"type": {
@@ -93593,15 +93789,15 @@
"groups": [
{
"title": "Properties",
- "children": [933, 932]
+ "children": [934, 933]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 587,
+ "line": 596,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L596"
}
]
}
@@ -93611,22 +93807,22 @@
"groups": [
{
"title": "Properties",
- "children": [930]
+ "children": [931]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 586,
+ "line": 595,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L595"
}
]
}
}
},
{
- "id": 977,
+ "id": 978,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -93634,22 +93830,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 674,
+ "line": 683,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L683"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 978,
+ "id": 979,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 982,
+ "id": 983,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -93675,9 +93871,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 680,
+ "line": 689,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L680"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L689"
}
],
"type": {
@@ -93686,7 +93882,7 @@
}
},
{
- "id": 983,
+ "id": 984,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -93712,9 +93908,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 682,
+ "line": 691,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L682"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L691"
}
],
"type": {
@@ -93723,7 +93919,7 @@
}
},
{
- "id": 984,
+ "id": 985,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -93733,22 +93929,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 683,
+ "line": 692,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L692"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 985,
+ "id": 986,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 986,
+ "id": 987,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -93766,9 +93962,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 685,
+ "line": 694,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L685"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L694"
}
],
"type": {
@@ -93780,22 +93976,22 @@
"groups": [
{
"title": "Properties",
- "children": [986]
+ "children": [987]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 683,
+ "line": 692,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L692"
}
]
}
}
},
{
- "id": 979,
+ "id": 980,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -93867,9 +94063,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 676,
+ "line": 685,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L676"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L685"
}
],
"type": {
@@ -93905,7 +94101,7 @@
{
"type": "reflection",
"declaration": {
- "id": 980,
+ "id": 981,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -93913,9 +94109,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 676,
+ "line": 685,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L676"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L685"
}
]
}
@@ -93926,7 +94122,7 @@
}
},
{
- "id": 981,
+ "id": 982,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -93974,9 +94170,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 678,
+ "line": 687,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L678"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L687"
}
],
"type": {
@@ -93988,22 +94184,22 @@
"groups": [
{
"title": "Properties",
- "children": [982, 983, 984, 979, 981]
+ "children": [983, 984, 985, 980, 982]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 674,
+ "line": 683,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L683"
}
]
}
}
},
{
- "id": 965,
+ "id": 966,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -94011,22 +94207,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 659,
+ "line": 668,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L668"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 966,
+ "id": 967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 968,
+ "id": 969,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -94036,22 +94232,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 662,
+ "line": 671,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L662"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L671"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 969,
+ "id": 970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 972,
+ "id": 973,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -94069,15 +94265,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 668,
+ "line": 677,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 973,
+ "id": 974,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -94085,14 +94281,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 668,
+ "line": 677,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"indexSignatures": [
{
- "id": 974,
+ "id": 975,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -94100,14 +94296,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 668,
+ "line": 677,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"parameters": [
{
- "id": 975,
+ "id": 976,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -94128,7 +94324,7 @@
}
},
{
- "id": 970,
+ "id": 971,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -94146,9 +94342,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 664,
+ "line": 673,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L673"
}
],
"type": {
@@ -94157,7 +94353,7 @@
}
},
{
- "id": 971,
+ "id": 972,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -94175,9 +94371,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 666,
+ "line": 675,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L666"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L675"
}
],
"type": {
@@ -94186,7 +94382,7 @@
}
},
{
- "id": 976,
+ "id": 977,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -94204,9 +94400,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 670,
+ "line": 679,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L670"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L679"
}
],
"type": {
@@ -94218,22 +94414,22 @@
"groups": [
{
"title": "Properties",
- "children": [972, 970, 971, 976]
+ "children": [973, 971, 972, 977]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 662,
+ "line": 671,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L662"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L671"
}
]
}
}
},
{
- "id": 967,
+ "id": 968,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -94249,9 +94445,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 661,
+ "line": 670,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L661"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L670"
}
],
"type": {
@@ -94265,22 +94461,22 @@
"groups": [
{
"title": "Properties",
- "children": [968, 967]
+ "children": [969, 968]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 659,
+ "line": 668,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L668"
}
]
}
}
},
{
- "id": 942,
+ "id": 943,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -94288,9 +94484,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 614,
+ "line": 623,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L614"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L623"
}
],
"type": {
@@ -94308,14 +94504,14 @@
{
"type": "reflection",
"declaration": {
- "id": 943,
+ "id": 944,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 944,
+ "id": 945,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -94325,22 +94521,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 615,
+ "line": 624,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L615"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L624"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 945,
+ "id": 946,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 946,
+ "id": 947,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -94350,9 +94546,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 616,
+ "line": 625,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L616"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L625"
}
],
"type": {
@@ -94364,15 +94560,15 @@
"groups": [
{
"title": "Properties",
- "children": [946]
+ "children": [947]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 615,
+ "line": 624,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L615"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L624"
}
]
}
@@ -94382,15 +94578,15 @@
"groups": [
{
"title": "Properties",
- "children": [944]
+ "children": [945]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 614,
+ "line": 623,
"character": 70,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L614"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L623"
}
]
}
@@ -94399,7 +94595,7 @@
}
},
{
- "id": 947,
+ "id": 948,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -94407,9 +94603,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 620,
+ "line": 629,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L620"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L629"
}
],
"type": {
@@ -94418,14 +94614,14 @@
{
"type": "reflection",
"declaration": {
- "id": 948,
+ "id": 949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 949,
+ "id": 950,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -94441,9 +94637,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 623,
+ "line": 632,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L623"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L632"
}
],
"type": {
@@ -94452,7 +94648,7 @@
}
},
{
- "id": 950,
+ "id": 951,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -94462,22 +94658,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 624,
+ "line": 633,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L633"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 951,
+ "id": 952,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 955,
+ "id": 956,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -94495,9 +94691,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 636,
+ "line": 645,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L636"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L645"
}
],
"type": {
@@ -94506,7 +94702,7 @@
}
},
{
- "id": 954,
+ "id": 955,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -94540,9 +94736,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 634,
+ "line": 643,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L634"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L643"
}
],
"type": {
@@ -94551,7 +94747,7 @@
}
},
{
- "id": 952,
+ "id": 953,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -94569,9 +94765,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 626,
+ "line": 635,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L635"
}
],
"type": {
@@ -94580,7 +94776,7 @@
}
},
{
- "id": 953,
+ "id": 954,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -94598,9 +94794,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 628,
+ "line": 637,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L628"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L637"
}
],
"type": {
@@ -94612,15 +94808,15 @@
"groups": [
{
"title": "Properties",
- "children": [955, 954, 952, 953]
+ "children": [956, 955, 953, 954]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 624,
+ "line": 633,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L633"
}
]
}
@@ -94630,15 +94826,15 @@
"groups": [
{
"title": "Properties",
- "children": [949, 950]
+ "children": [950, 951]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 621,
+ "line": 630,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L621"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L630"
}
]
}
@@ -94646,14 +94842,14 @@
{
"type": "reflection",
"declaration": {
- "id": 956,
+ "id": 957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 958,
+ "id": 959,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -94663,22 +94859,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 642,
+ "line": 651,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L642"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L651"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 959,
+ "id": 960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 962,
+ "id": 963,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -94696,9 +94892,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 652,
+ "line": 661,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L661"
}
],
"type": {
@@ -94707,7 +94903,7 @@
}
},
{
- "id": 963,
+ "id": 964,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -94725,9 +94921,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 654,
+ "line": 663,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L654"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L663"
}
],
"type": {
@@ -94745,7 +94941,7 @@
}
},
{
- "id": 961,
+ "id": 962,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -94779,9 +94975,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 650,
+ "line": 659,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L659"
}
],
"type": {
@@ -94790,7 +94986,7 @@
}
},
{
- "id": 960,
+ "id": 961,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -94808,9 +95004,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 644,
+ "line": 653,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L644"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L653"
}
],
"type": {
@@ -94822,22 +95018,22 @@
"groups": [
{
"title": "Properties",
- "children": [962, 963, 961, 960]
+ "children": [963, 964, 962, 961]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 642,
+ "line": 651,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L642"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L651"
}
]
}
}
},
{
- "id": 957,
+ "id": 958,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -94853,9 +95049,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 641,
+ "line": 650,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L641"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L650"
}
],
"type": {
@@ -94867,15 +95063,15 @@
"groups": [
{
"title": "Properties",
- "children": [958, 957]
+ "children": [959, 958]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 639,
+ "line": 648,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L648"
}
]
}
@@ -94884,7 +95080,7 @@
}
},
{
- "id": 1075,
+ "id": 1076,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -94892,9 +95088,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 846,
+ "line": 855,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L846"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L855"
}
],
"type": {
@@ -94903,14 +95099,224 @@
{
"type": "reflection",
"declaration": {
- "id": 1076,
+ "id": 1077,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
+ {
+ "id": 1079,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 860,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L860"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1080,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1082,
+ "name": "captchaToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Verification token received when the user completes the captcha on the site."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 864,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L864"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1081,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A URL to send the user to after they have signed-in."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 862,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L862"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1083,
+ "name": "skipBrowserRedirect",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set to true, the redirect will not happen on the client side.\nThis parameter is used when you wish to handle the redirect yourself.\nDefaults to false."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 870,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L870"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1082, 1081, 1083]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 860,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L860"
+ }
+ ]
+ }
+ }
+ },
{
"id": 1078,
+ "name": "providerId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "UUID of the SSO provider to invoke single-sign on to."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 858,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L858"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1079, 1078]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 856,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L856"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1084,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1085,
+ "name": "domain",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Domain name of the organization for which to invoke single-sign on."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 875,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L875"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1086,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -94920,22 +95326,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 851,
+ "line": 877,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L851"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L877"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1079,
+ "id": 1087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1081,
+ "id": 1089,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -94953,9 +95359,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 855,
+ "line": 881,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L855"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L881"
}
],
"type": {
@@ -94963,218 +95369,8 @@
"name": "string"
}
},
- {
- "id": 1080,
- "name": "redirectTo",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A URL to send the user to after they have signed-in."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 853,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L853"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 1082,
- "name": "skipBrowserRedirect",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If set to true, the redirect will not happen on the client side.\nThis parameter is used when you wish to handle the redirect yourself.\nDefaults to false."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 861,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L861"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [1081, 1080, 1082]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 851,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L851"
- }
- ]
- }
- }
- },
- {
- "id": 1077,
- "name": "providerId",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "UUID of the SSO provider to invoke single-sign on to."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 849,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L849"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [1078, 1077]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 847,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L847"
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 1083,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 1084,
- "name": "domain",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Domain name of the organization for which to invoke single-sign on."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 866,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L866"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 1085,
- "name": "options",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 868,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L868"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 1086,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
{
"id": 1088,
- "name": "captchaToken",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Verification token received when the user completes the captcha on the site."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 872,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L872"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 1087,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -95192,9 +95388,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 870,
+ "line": 879,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L870"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L879"
}
],
"type": {
@@ -95203,7 +95399,7 @@
}
},
{
- "id": 1089,
+ "id": 1090,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -95221,9 +95417,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 878,
+ "line": 887,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L878"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L887"
}
],
"type": {
@@ -95235,15 +95431,15 @@
"groups": [
{
"title": "Properties",
- "children": [1088, 1087, 1089]
+ "children": [1089, 1088, 1090]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 868,
+ "line": 877,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L868"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L877"
}
]
}
@@ -95253,15 +95449,15 @@
"groups": [
{
"title": "Properties",
- "children": [1084, 1085]
+ "children": [1085, 1086]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 864,
+ "line": 873,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L864"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L873"
}
]
}
@@ -95270,7 +95466,7 @@
}
},
{
- "id": 1331,
+ "id": 1332,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -95278,22 +95474,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1414,
+ "line": 1423,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1423"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1332,
+ "id": 1333,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1333,
+ "id": 1334,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -95311,9 +95507,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1425,
+ "line": 1434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1425"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1434"
}
],
"type": {
@@ -95338,22 +95534,22 @@
"groups": [
{
"title": "Properties",
- "children": [1333]
+ "children": [1334]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1414,
+ "line": 1423,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1423"
}
]
}
}
},
{
- "id": 1383,
+ "id": 1384,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -95361,9 +95557,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1579,
+ "line": 1588,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1588"
}
],
"type": {
@@ -95376,7 +95572,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1382,
+ "target": 1383,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -95384,7 +95580,7 @@
}
},
{
- "id": 934,
+ "id": 935,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -95392,14 +95588,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 599,
+ "line": 608,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L599"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L608"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -95416,14 +95612,14 @@
{
"type": "reflection",
"declaration": {
- "id": 935,
+ "id": 936,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 936,
+ "id": 937,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -95433,22 +95629,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 601,
+ "line": 610,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L610"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 937,
+ "id": 938,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 940,
+ "id": 941,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -95458,9 +95654,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 604,
+ "line": 613,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L604"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L613"
}
],
"type": {
@@ -95469,7 +95665,7 @@
}
},
{
- "id": 941,
+ "id": 942,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -95479,9 +95675,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 605,
+ "line": 614,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L605"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L614"
}
],
"type": {
@@ -95499,7 +95695,7 @@
}
},
{
- "id": 939,
+ "id": 940,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -95509,9 +95705,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 603,
+ "line": 612,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L612"
}
],
"type": {
@@ -95520,7 +95716,7 @@
}
},
{
- "id": 938,
+ "id": 939,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -95530,9 +95726,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 602,
+ "line": 611,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L611"
}
],
"type": {
@@ -95544,15 +95740,15 @@
"groups": [
{
"title": "Properties",
- "children": [940, 941, 939, 938]
+ "children": [941, 942, 940, 939]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 601,
+ "line": 610,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L610"
}
]
}
@@ -95562,15 +95758,15 @@
"groups": [
{
"title": "Properties",
- "children": [936]
+ "children": [937]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 600,
+ "line": 609,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L600"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L609"
}
]
}
@@ -95583,7 +95779,7 @@
}
},
{
- "id": 987,
+ "id": 988,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -95591,22 +95787,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 689,
+ "line": 698,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L698"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 988,
+ "id": 989,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 993,
+ "id": 994,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -95616,9 +95812,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 691,
+ "line": 700,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L691"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L700"
}
],
"type": {
@@ -95627,14 +95823,14 @@
{
"type": "reflection",
"declaration": {
- "id": 994,
+ "id": 995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 995,
+ "id": 996,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -95642,15 +95838,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 692,
+ "line": 701,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L692"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L701"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 996,
+ "id": 997,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -95658,14 +95854,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 692,
+ "line": 701,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L692"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L701"
}
],
"signatures": [
{
- "id": 997,
+ "id": 998,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -95683,15 +95879,15 @@
"groups": [
{
"title": "Properties",
- "children": [995]
+ "children": [996]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 691,
+ "line": 700,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L691"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L700"
}
]
}
@@ -95704,7 +95900,7 @@
}
},
{
- "id": 989,
+ "id": 990,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -95714,15 +95910,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 690,
+ "line": 699,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L690"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L699"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 990,
+ "id": 991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -95730,21 +95926,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 690,
+ "line": 699,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L690"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L699"
}
],
"signatures": [
{
- "id": 991,
+ "id": 992,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 992,
+ "id": 993,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -95808,7 +96004,7 @@
}
},
{
- "id": 998,
+ "id": 999,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -95818,15 +96014,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 695,
+ "line": 704,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L695"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L704"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 999,
+ "id": 1000,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -95834,21 +96030,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 695,
+ "line": 704,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L695"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L704"
}
],
"signatures": [
{
- "id": 1000,
+ "id": 1001,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 1001,
+ "id": 1002,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -95864,7 +96060,7 @@
}
},
{
- "id": 1002,
+ "id": 1003,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -95924,22 +96120,22 @@
"groups": [
{
"title": "Properties",
- "children": [993, 989, 998]
+ "children": [994, 990, 999]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 689,
+ "line": 698,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L698"
}
]
}
}
},
{
- "id": 1003,
+ "id": 1004,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -95947,9 +96143,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 698,
+ "line": 707,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L698"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L707"
}
],
"type": {
@@ -95958,14 +96154,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1004,
+ "id": 1005,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1005,
+ "id": 1006,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -95973,9 +96169,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 700,
+ "line": 709,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L700"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L709"
}
],
"type": {
@@ -95984,7 +96180,7 @@
}
},
{
- "id": 1008,
+ "id": 1009,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -95994,22 +96190,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 708,
+ "line": 717,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L717"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1009,
+ "id": 1010,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1011,
+ "id": 1012,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -96027,9 +96223,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 713,
+ "line": 722,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L713"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L722"
}
],
"type": {
@@ -96038,7 +96234,7 @@
}
},
{
- "id": 1012,
+ "id": 1013,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -96048,9 +96244,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 715,
+ "line": 724,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L715"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L724"
}
],
"type": {
@@ -96111,7 +96307,7 @@
}
},
{
- "id": 1010,
+ "id": 1011,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -96129,9 +96325,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 710,
+ "line": 719,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L710"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L719"
}
],
"type": {
@@ -96143,22 +96339,22 @@
"groups": [
{
"title": "Properties",
- "children": [1011, 1012, 1010]
+ "children": [1012, 1013, 1011]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 708,
+ "line": 717,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L717"
}
]
}
}
},
{
- "id": 1007,
+ "id": 1008,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -96176,9 +96372,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 706,
+ "line": 715,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L706"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L715"
}
],
"type": {
@@ -96187,7 +96383,7 @@
}
},
{
- "id": 1006,
+ "id": 1007,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -96213,14 +96409,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 703,
+ "line": 712,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L703"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L712"
}
],
"type": {
"type": "reference",
- "target": 987,
+ "target": 988,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -96229,15 +96425,15 @@
"groups": [
{
"title": "Properties",
- "children": [1005, 1008, 1007, 1006]
+ "children": [1006, 1009, 1008, 1007]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 699,
+ "line": 708,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L699"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L708"
}
]
}
@@ -96245,14 +96441,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1013,
+ "id": 1014,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1014,
+ "id": 1015,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -96260,9 +96456,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 721,
+ "line": 730,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L721"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L730"
}
],
"type": {
@@ -96271,7 +96467,7 @@
}
},
{
- "id": 1015,
+ "id": 1016,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -96311,9 +96507,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 724,
+ "line": 733,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L724"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L733"
}
],
"type": {
@@ -96322,7 +96518,7 @@
}
},
{
- "id": 1017,
+ "id": 1018,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -96332,22 +96528,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 729,
+ "line": 738,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L729"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L738"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1018,
+ "id": 1019,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1019,
+ "id": 1020,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -96365,9 +96561,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 731,
+ "line": 740,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L731"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L740"
}
],
"type": {
@@ -96379,22 +96575,22 @@
"groups": [
{
"title": "Properties",
- "children": [1019]
+ "children": [1020]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 729,
+ "line": 738,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L729"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L738"
}
]
}
}
},
{
- "id": 1016,
+ "id": 1017,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -96410,9 +96606,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 727,
+ "line": 736,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L727"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L736"
}
],
"type": {
@@ -96429,15 +96625,15 @@
"groups": [
{
"title": "Properties",
- "children": [1014, 1015, 1017, 1016]
+ "children": [1015, 1016, 1018, 1017]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 720,
+ "line": 729,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L720"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L729"
}
]
}
@@ -96446,7 +96642,7 @@
}
},
{
- "id": 820,
+ "id": 821,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -96454,26 +96650,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 269,
+ "line": 278,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L278"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 821,
+ "id": 822,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 822,
+ "id": 823,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -96497,9 +96693,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 277,
+ "line": 286,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L286"
}
],
"type": {
@@ -96511,15 +96707,15 @@
"groups": [
{
"title": "Properties",
- "children": [822]
+ "children": [823]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 269,
+ "line": 278,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L278"
}
]
}
@@ -96530,7 +96726,7 @@
}
},
{
- "id": 764,
+ "id": 765,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -96546,21 +96742,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 194,
+ "line": 203,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L203"
}
],
"typeParameters": [
{
- "id": 765,
+ "id": 766,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 766,
+ "id": 767,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -96570,7 +96766,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 765,
+ "target": 766,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -96587,14 +96783,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 765,
+ "target": 766,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 766,
+ "target": 767,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -96605,7 +96801,7 @@
}
},
{
- "id": 1313,
+ "id": 1314,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -96613,9 +96809,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1383,
+ "line": 1392,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1383"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1392"
}
],
"type": {
@@ -96672,14 +96868,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1314,
+ "id": 1315,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1315,
+ "id": 1316,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -96705,9 +96901,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1393,
+ "line": 1402,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1393"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1402"
}
],
"type": {
@@ -96719,15 +96915,15 @@
"groups": [
{
"title": "Properties",
- "children": [1315]
+ "children": [1316]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1385,
+ "line": 1394,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1385"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1394"
}
]
}
@@ -96736,7 +96932,7 @@
}
},
{
- "id": 1412,
+ "id": 1413,
"name": "UpdateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -96752,22 +96948,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1664,
+ "line": 1673,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1673"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1413,
+ "id": 1414,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1414,
+ "id": 1415,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -96785,9 +96981,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1666,
+ "line": 1675,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1666"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1675"
}
],
"type": {
@@ -96796,7 +96992,7 @@
}
},
{
- "id": 1415,
+ "id": 1416,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -96814,9 +97010,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1668,
+ "line": 1677,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1677"
}
],
"type": {
@@ -96825,7 +97021,7 @@
}
},
{
- "id": 1418,
+ "id": 1419,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -96843,23 +97039,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1674,
+ "line": 1683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1674"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1683"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1384,
+ "target": 1385,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1416,
+ "id": 1417,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -96877,9 +97073,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1670,
+ "line": 1679,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1670"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1679"
}
],
"type": {
@@ -96888,7 +97084,7 @@
}
},
{
- "id": 1417,
+ "id": 1418,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -96906,9 +97102,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1672,
+ "line": 1681,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1672"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1681"
}
],
"type": {
@@ -96923,22 +97119,22 @@
"groups": [
{
"title": "Properties",
- "children": [1414, 1415, 1418, 1416, 1417]
+ "children": [1415, 1416, 1419, 1417, 1418]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1664,
+ "line": 1673,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1673"
}
]
}
}
},
{
- "id": 823,
+ "id": 824,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -96946,26 +97142,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 280,
+ "line": 289,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L289"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 824,
+ "id": 825,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 825,
+ "id": 826,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -96973,14 +97169,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 281,
+ "line": 290,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L281"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L290"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -96989,15 +97185,15 @@
"groups": [
{
"title": "Properties",
- "children": [825]
+ "children": [826]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 280,
+ "line": 289,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L289"
}
]
}
@@ -97008,7 +97204,7 @@
}
},
{
- "id": 1039,
+ "id": 1040,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -97016,9 +97212,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 776,
+ "line": 785,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L776"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L785"
}
],
"type": {
@@ -97026,19 +97222,19 @@
"types": [
{
"type": "reference",
- "target": 1040,
+ "target": 1041,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1048,
+ "target": 1049,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1056,
+ "target": 1057,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -97046,7 +97242,7 @@
}
},
{
- "id": 758,
+ "id": 759,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -97054,22 +97250,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 178,
+ "line": 187,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L187"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 759,
+ "id": 760,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 761,
+ "id": 762,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -97077,9 +97273,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 180,
+ "line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L189"
}
],
"type": {
@@ -97088,7 +97284,7 @@
}
},
{
- "id": 760,
+ "id": 761,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -97096,16 +97292,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 179,
+ "line": 188,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L188"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 757,
+ "target": 758,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -97115,22 +97311,22 @@
"groups": [
{
"title": "Properties",
- "children": [761, 760]
+ "children": [762, 761]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 178,
+ "line": 187,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L187"
}
]
}
}
},
{
- "id": 757,
+ "id": 758,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -97138,9 +97334,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 177,
+ "line": 186,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L186"
}
],
"type": {
@@ -97165,7 +97361,7 @@
}
},
{
- "id": 1038,
+ "id": 1039,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -97173,9 +97369,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 774,
+ "line": 783,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L783"
}
],
"type": {
@@ -97183,13 +97379,13 @@
"types": [
{
"type": "reference",
- "target": 1003,
+ "target": 1004,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1021,
+ "target": 1022,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -97209,7 +97405,7 @@
"fileName": "packages/core/auth-js/src/AuthAdminApi.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/AuthAdminApi.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/AuthAdminApi.ts#L3"
}
],
"type": {
@@ -97236,7 +97432,7 @@
"fileName": "packages/core/auth-js/src/AuthClient.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/AuthClient.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/AuthClient.ts#L3"
}
],
"type": {
@@ -97267,7 +97463,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L6"
}
],
"type": {
@@ -97294,7 +97490,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L10"
}
],
"type": {
@@ -97315,7 +97511,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L6"
}
]
}
@@ -97323,7 +97519,7 @@
"defaultValue": "..."
},
{
- "id": 1382,
+ "id": 1383,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -97333,9 +97529,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1578,
+ "line": 1587,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1578"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1587"
}
],
"type": {
@@ -97362,7 +97558,7 @@
"defaultValue": "..."
},
{
- "id": 1510,
+ "id": 1511,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -97372,12 +97568,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"signatures": [
{
- "id": 1511,
+ "id": 1512,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -97387,12 +97583,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"parameters": [
{
- "id": 1512,
+ "id": 1513,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -97409,7 +97605,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -97418,7 +97614,7 @@
]
},
{
- "id": 1507,
+ "id": 1508,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -97428,12 +97624,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"signatures": [
{
- "id": 1508,
+ "id": 1509,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -97443,12 +97639,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"parameters": [
{
- "id": 1509,
+ "id": 1510,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -97465,7 +97661,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -97474,7 +97670,7 @@
]
},
{
- "id": 1516,
+ "id": 1517,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -97484,12 +97680,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"signatures": [
{
- "id": 1517,
+ "id": 1518,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -97499,12 +97695,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"parameters": [
{
- "id": 1518,
+ "id": 1519,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -97521,7 +97717,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1595,
+ "target": 1596,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -97530,7 +97726,7 @@
]
},
{
- "id": 1519,
+ "id": 1520,
"name": "isAuthPKCECodeVerifierMissingError",
"variant": "declaration",
"kind": 64,
@@ -97540,12 +97736,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 252,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L252"
}
],
"signatures": [
{
- "id": 1520,
+ "id": 1521,
"name": "isAuthPKCECodeVerifierMissingError",
"variant": "signature",
"kind": 4096,
@@ -97555,12 +97751,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 252,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L252"
}
],
"parameters": [
{
- "id": 1521,
+ "id": 1522,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -97577,7 +97773,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1649,
+ "target": 1650,
"name": "AuthPKCECodeVerifierMissingError",
"package": "@supabase/auth-js"
}
@@ -97586,7 +97782,7 @@
]
},
{
- "id": 1522,
+ "id": 1523,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -97596,12 +97792,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"signatures": [
{
- "id": 1523,
+ "id": 1524,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -97611,12 +97807,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"parameters": [
{
- "id": 1524,
+ "id": 1525,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -97633,7 +97829,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1657,
+ "target": 1658,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -97642,7 +97838,7 @@
]
},
{
- "id": 1513,
+ "id": 1514,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -97652,12 +97848,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"signatures": [
{
- "id": 1514,
+ "id": 1515,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -97667,12 +97863,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"parameters": [
{
- "id": 1515,
+ "id": 1516,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -97689,7 +97885,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1570,
+ "target": 1571,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -97698,7 +97894,7 @@
]
},
{
- "id": 1525,
+ "id": 1526,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -97708,12 +97904,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 306,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L306"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L306"
}
],
"signatures": [
{
- "id": 1526,
+ "id": 1527,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -97723,12 +97919,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 306,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L306"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L306"
}
],
"parameters": [
{
- "id": 1527,
+ "id": 1528,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -97745,7 +97941,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -97764,7 +97960,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"signatures": [
@@ -97840,7 +98036,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"typeParameters": [
@@ -97926,7 +98122,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"signatures": [
@@ -97941,7 +98137,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"type": {
@@ -98000,7 +98196,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 223,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L223"
}
],
"signatures": [
@@ -98043,7 +98239,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 223,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L223"
}
],
"typeParameters": [
@@ -98129,7 +98325,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L226"
}
],
"signatures": [
@@ -98144,7 +98340,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L226"
}
],
"type": {
@@ -98197,37 +98393,37 @@
{
"title": "Classes",
"children": [
- 1538, 1528, 1595, 1586, 1679, 1578, 1649, 1622, 1657, 1570, 1548, 1667, 1558, 1, 107,
+ 1539, 1529, 1596, 1587, 1680, 1579, 1650, 1623, 1658, 1571, 1549, 1668, 1559, 1, 107,
698
]
},
{
"title": "Interfaces",
"children": [
- 905, 837, 1484, 1112, 1306, 1432, 1175, 1375, 1355, 826, 918, 872, 864, 899, 840, 869,
- 1048, 1040, 1056
+ 906, 838, 1485, 1113, 1307, 1433, 1176, 1376, 1356, 827, 919, 873, 865, 900, 841, 870,
+ 1049, 1041, 1057
]
},
{
"title": "Type Aliases",
"children": [
- 835, 716, 715, 1169, 964, 1296, 1293, 1303, 1300, 1160, 1164, 1159, 1161, 1162, 1163,
- 1338, 1155, 1337, 1339, 1170, 1165, 1156, 1154, 1147, 1474, 1475, 1481, 1482, 793, 784,
- 788, 798, 802, 1319, 1404, 1060, 1020, 1021, 853, 852, 1106, 1096, 1115, 1120, 1116,
- 1127, 1101, 1090, 726, 1316, 1340, 717, 1146, 1145, 1143, 1142, 1144, 1128, 1335, 1334,
- 1336, 1141, 1129, 1140, 1133, 1132, 1134, 1138, 1059, 1455, 1461, 1388, 1384, 1420,
- 1387, 1419, 1385, 1386, 1476, 1471, 807, 1327, 1320, 762, 714, 767, 776, 1345, 1061,
- 928, 977, 965, 942, 947, 1075, 1331, 1383, 934, 987, 1003, 820, 764, 1313, 1412, 823,
- 1039, 758, 757, 1038
+ 836, 716, 715, 1170, 965, 1297, 1294, 1304, 1301, 1161, 1165, 1160, 1162, 1163, 1164,
+ 1339, 1156, 1338, 1340, 1171, 1166, 1157, 1155, 1148, 1475, 1476, 1482, 1483, 794, 785,
+ 789, 799, 803, 1320, 1405, 1061, 1021, 1022, 854, 853, 1107, 1097, 1116, 1121, 1117,
+ 1128, 1102, 1091, 726, 1317, 1341, 717, 1147, 1146, 1144, 1143, 1145, 1129, 1336, 1335,
+ 1337, 1142, 1130, 1141, 1134, 1133, 1135, 1139, 1060, 1456, 1462, 1389, 1385, 1421,
+ 1388, 1420, 1386, 1387, 1477, 1472, 808, 1328, 1321, 763, 714, 768, 777, 1346, 1062,
+ 929, 978, 966, 943, 948, 1076, 1332, 1384, 935, 988, 1004, 821, 765, 1314, 1413, 824,
+ 1040, 759, 758, 1039
]
},
{
"title": "Variables",
- "children": [688, 689, 703, 1382]
+ "children": [688, 689, 703, 1383]
},
{
"title": "Functions",
- "children": [1510, 1507, 1516, 1519, 1522, 1513, 1525, 690, 706]
+ "children": [1511, 1508, 1517, 1520, 1523, 1514, 1526, 690, 706]
}
],
"packageName": "@supabase/auth-js",
@@ -99733,651 +99929,651 @@
},
"757": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "WeakPasswordReasons"
+ "qualifiedName": "__type.skipAutoInitialize"
},
"758": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "WeakPassword"
+ "qualifiedName": "WeakPasswordReasons"
},
"759": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WeakPassword"
},
"760": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.reasons"
+ "qualifiedName": "__type"
},
"761": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.reasons"
},
"762": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Prettify"
+ "qualifiedName": "__type.message"
},
"763": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "Prettify"
},
"764": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "StrictOmit"
+ "qualifiedName": "T"
},
"765": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "StrictOmit"
},
"766": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "K"
+ "qualifiedName": "T"
},
"767": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "RequestResult"
+ "qualifiedName": "K"
},
"768": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RequestResult"
},
"769": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"770": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"771": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"772": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"773": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"774": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.error"
},
"775": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "ErrorType"
+ "qualifiedName": "T"
},
"776": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "RequestResultSafeDestructure"
+ "qualifiedName": "ErrorType"
},
"777": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RequestResultSafeDestructure"
},
"778": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"779": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"780": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"781": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"782": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"783": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.error"
},
"784": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthResponse"
+ "qualifiedName": "T"
},
"785": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthResponse"
},
"786": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"787": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"788": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthResponsePassword"
+ "qualifiedName": "__type.session"
},
"789": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthResponsePassword"
},
"790": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"791": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"792": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.weak_password"
+ "qualifiedName": "__type.session"
},
"793": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOtpResponse"
+ "qualifiedName": "__type.weak_password"
},
"794": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOtpResponse"
},
"795": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"796": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"797": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.messageId"
+ "qualifiedName": "__type.session"
},
"798": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthTokenResponse"
+ "qualifiedName": "__type.messageId"
},
"799": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthTokenResponse"
},
"800": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"801": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"802": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthTokenResponsePassword"
+ "qualifiedName": "__type.session"
},
"803": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthTokenResponsePassword"
},
"804": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"805": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"806": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.weakPassword"
+ "qualifiedName": "__type.session"
},
"807": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthResponse"
+ "qualifiedName": "__type.weakPassword"
},
"808": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthResponse"
},
"809": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"810": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"811": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"812": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.provider"
},
"813": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.url"
},
"814": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"815": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"816": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"817": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"818": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.provider"
},
"819": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.url"
},
"820": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SSOResponse"
+ "qualifiedName": "__type.error"
},
"821": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SSOResponse"
},
"822": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"823": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserResponse"
+ "qualifiedName": "__type.url"
},
"824": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UserResponse"
},
"825": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"826": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session"
+ "qualifiedName": "__type.user"
},
"827": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.provider_token"
+ "qualifiedName": "Session"
},
"828": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.provider_refresh_token"
+ "qualifiedName": "Session.provider_token"
},
"829": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.access_token"
+ "qualifiedName": "Session.provider_refresh_token"
},
"830": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.refresh_token"
+ "qualifiedName": "Session.access_token"
},
"831": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.expires_in"
+ "qualifiedName": "Session.refresh_token"
},
"832": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.expires_at"
+ "qualifiedName": "Session.expires_in"
},
"833": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.token_type"
+ "qualifiedName": "Session.expires_at"
},
"834": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.user"
+ "qualifiedName": "Session.token_type"
},
"835": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMRMethod"
+ "qualifiedName": "Session.user"
},
"836": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AMRMethod"
},
"837": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMREntry"
+ "qualifiedName": "__type"
},
"838": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMREntry.method"
+ "qualifiedName": "AMREntry"
},
"839": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMREntry.timestamp"
+ "qualifiedName": "AMREntry.method"
},
"840": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity"
+ "qualifiedName": "AMREntry.timestamp"
},
"841": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity.id"
+ "qualifiedName": "UserIdentity"
},
"842": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity.user_id"
+ "qualifiedName": "UserIdentity.id"
},
"843": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity.identity_data"
+ "qualifiedName": "UserIdentity.user_id"
},
"844": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UserIdentity.identity_data"
},
"845": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "846": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "847": {
+ "848": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "848": {
+ "849": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "849": {
+ "850": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "850": {
+ "851": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "851": {
+ "852": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "852": {
+ "853": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "853": {
+ "854": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Factor"
},
- "854": {
+ "855": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "855": {
+ "856": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "856": {
+ "857": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "857": {
+ "858": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "858": {
+ "859": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "859": {
+ "860": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "860": {
+ "861": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "861": {
+ "862": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.last_challenged_at"
},
- "862": {
+ "863": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Type"
},
- "863": {
+ "864": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Status"
},
- "864": {
+ "865": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "865": {
+ "866": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.provider"
},
- "866": {
+ "867": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.providers"
},
- "867": {
+ "868": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.__index"
},
- "869": {
+ "870": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata"
},
- "870": {
+ "871": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata.__index"
},
- "872": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User"
- },
"873": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.id"
+ "qualifiedName": "User"
},
"874": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.app_metadata"
+ "qualifiedName": "User.id"
},
"875": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.user_metadata"
+ "qualifiedName": "User.app_metadata"
},
"876": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.aud"
+ "qualifiedName": "User.user_metadata"
},
"877": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.confirmation_sent_at"
+ "qualifiedName": "User.aud"
},
"878": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.recovery_sent_at"
+ "qualifiedName": "User.confirmation_sent_at"
},
"879": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email_change_sent_at"
+ "qualifiedName": "User.recovery_sent_at"
},
"880": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.new_email"
+ "qualifiedName": "User.email_change_sent_at"
},
"881": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.new_phone"
+ "qualifiedName": "User.new_email"
},
"882": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.invited_at"
+ "qualifiedName": "User.new_phone"
},
"883": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.action_link"
+ "qualifiedName": "User.invited_at"
},
"884": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email"
+ "qualifiedName": "User.action_link"
},
"885": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.phone"
+ "qualifiedName": "User.email"
},
"886": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.created_at"
+ "qualifiedName": "User.phone"
},
"887": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.confirmed_at"
+ "qualifiedName": "User.created_at"
},
"888": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email_confirmed_at"
+ "qualifiedName": "User.confirmed_at"
},
"889": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.phone_confirmed_at"
+ "qualifiedName": "User.email_confirmed_at"
},
"890": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.last_sign_in_at"
+ "qualifiedName": "User.phone_confirmed_at"
},
"891": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.role"
+ "qualifiedName": "User.last_sign_in_at"
},
"892": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.updated_at"
+ "qualifiedName": "User.role"
},
"893": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.identities"
+ "qualifiedName": "User.updated_at"
},
"894": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.is_anonymous"
+ "qualifiedName": "User.identities"
},
"895": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.is_sso_user"
+ "qualifiedName": "User.is_anonymous"
},
"896": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.factors"
+ "qualifiedName": "User.is_sso_user"
},
"897": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.deleted_at"
+ "qualifiedName": "User.factors"
},
"898": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.banned_until"
+ "qualifiedName": "User.deleted_at"
},
"899": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes"
+ "qualifiedName": "User.banned_until"
},
"900": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.email"
+ "qualifiedName": "UserAttributes"
},
"901": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.phone"
+ "qualifiedName": "UserAttributes.email"
},
"902": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.password"
+ "qualifiedName": "UserAttributes.phone"
},
"903": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.nonce"
+ "qualifiedName": "UserAttributes.password"
},
"904": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.data"
+ "qualifiedName": "UserAttributes.nonce"
},
"905": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes"
+ "qualifiedName": "UserAttributes.data"
},
"906": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.user_metadata"
+ "qualifiedName": "AdminUserAttributes"
},
"907": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.app_metadata"
+ "qualifiedName": "AdminUserAttributes.user_metadata"
},
"908": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.email_confirm"
+ "qualifiedName": "AdminUserAttributes.app_metadata"
},
"909": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.phone_confirm"
+ "qualifiedName": "AdminUserAttributes.email_confirm"
},
"910": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.ban_duration"
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
},
"911": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.role"
+ "qualifiedName": "AdminUserAttributes.ban_duration"
},
"912": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.password_hash"
+ "qualifiedName": "AdminUserAttributes.role"
},
"913": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.id"
+ "qualifiedName": "AdminUserAttributes.password_hash"
},
"914": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "nonce"
+ "qualifiedName": "AdminUserAttributes.id"
},
"915": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "nonce"
},
"916": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "email"
+ "qualifiedName": "phone"
},
"917": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "password"
+ "qualifiedName": "email"
},
"918": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription"
+ "qualifiedName": "password"
},
"919": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.id"
+ "qualifiedName": "Subscription"
},
"920": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.callback"
+ "qualifiedName": "Subscription.id"
},
"921": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.callback"
},
"922": {
"sourceFileName": "src/lib/types.ts",
@@ -100385,19 +100581,19 @@
},
"923": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type"
},
"924": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "session"
+ "qualifiedName": "event"
},
"925": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.unsubscribe"
+ "qualifiedName": "session"
},
"926": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.unsubscribe"
},
"927": {
"sourceFileName": "src/lib/types.ts",
@@ -100405,251 +100601,251 @@
},
"928": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInAnonymouslyCredentials"
+ "qualifiedName": "__type"
},
"929": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInAnonymouslyCredentials"
},
"930": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"931": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"932": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"933": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"934": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignUpWithPasswordCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"935": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignUpWithPasswordCredentials"
},
"936": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"937": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"938": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"939": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.emailRedirectTo"
},
"940": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"941": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.captchaToken"
},
"942": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordCredentials"
+ "qualifiedName": "__type.channel"
},
"943": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithPasswordCredentials"
},
"944": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"945": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"946": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"947": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordlessCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"948": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithPasswordlessCredentials"
},
"949": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"950": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"951": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"952": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"953": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type.emailRedirectTo"
},
"954": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.shouldCreateUser"
},
"955": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"956": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"957": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type"
},
"958": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"959": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"960": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type"
},
"961": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.shouldCreateUser"
},
"962": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"963": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.captchaToken"
},
"964": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthFlowType"
+ "qualifiedName": "__type.channel"
},
"965": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithOAuthCredentials"
+ "qualifiedName": "AuthFlowType"
},
"966": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithOAuthCredentials"
},
"967": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"968": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.provider"
},
"969": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"970": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"971": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type.redirectTo"
},
"972": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.queryParams"
+ "qualifiedName": "__type.scopes"
},
"973": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.queryParams"
},
"974": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "976": {
+ "975": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.__index"
},
"977": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithIdTokenCredentials"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"978": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithIdTokenCredentials"
},
"979": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"980": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.provider"
},
"981": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token"
+ "qualifiedName": "__type"
},
"982": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type.token"
},
"983": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nonce"
+ "qualifiedName": "__type.access_token"
},
"984": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.nonce"
},
"985": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"986": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"987": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWallet"
+ "qualifiedName": "__type.captchaToken"
},
"988": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWallet"
},
"989": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signIn"
+ "qualifiedName": "__type"
},
"990": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signIn"
},
"991": {
"sourceFileName": "src/lib/types.ts",
@@ -100657,23 +100853,23 @@
},
"992": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "inputs"
+ "qualifiedName": "__type"
},
"993": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "inputs"
},
"994": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"995": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.toBase58"
+ "qualifiedName": "__type"
},
"996": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.toBase58"
},
"997": {
"sourceFileName": "src/lib/types.ts",
@@ -100681,11 +100877,11 @@
},
"998": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signMessage"
+ "qualifiedName": "__type"
},
"999": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signMessage"
},
"1000": {
"sourceFileName": "src/lib/types.ts",
@@ -100693,707 +100889,707 @@
},
"1001": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "message"
+ "qualifiedName": "__type"
},
"1002": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "encoding"
+ "qualifiedName": "message"
},
"1003": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWeb3Credentials"
+ "qualifiedName": "encoding"
},
"1004": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWeb3Credentials"
},
"1005": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1006": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.chain"
},
"1007": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.wallet"
},
"1008": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.statement"
},
"1009": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1010": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"1011": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.url"
},
"1012": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithSolana"
+ "qualifiedName": "__type.captchaToken"
},
"1013": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signInWithSolana"
},
"1014": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1015": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.chain"
},
"1016": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.message"
},
"1017": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.signature"
},
"1018": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1019": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1020": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWallet"
+ "qualifiedName": "__type.captchaToken"
},
"1021": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWeb3Credentials"
+ "qualifiedName": "EthereumWallet"
},
"1022": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EthereumWeb3Credentials"
},
"1023": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1024": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.chain"
},
"1025": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.wallet"
},
"1026": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.statement"
},
"1027": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1028": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"1029": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.url"
},
"1030": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithEthereum"
+ "qualifiedName": "__type.captchaToken"
},
"1031": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signInWithEthereum"
},
"1032": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1033": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.chain"
},
"1034": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.message"
},
"1035": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.signature"
},
"1036": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1037": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1038": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Web3Credentials"
+ "qualifiedName": "__type.captchaToken"
},
"1039": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyOtpParams"
+ "qualifiedName": "Web3Credentials"
},
"1040": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams"
+ "qualifiedName": "VerifyOtpParams"
},
"1041": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.phone"
+ "qualifiedName": "VerifyMobileOtpParams"
},
"1042": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.token"
+ "qualifiedName": "VerifyMobileOtpParams.phone"
},
"1043": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.type"
+ "qualifiedName": "VerifyMobileOtpParams.token"
},
"1044": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.options"
+ "qualifiedName": "VerifyMobileOtpParams.type"
},
"1045": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyMobileOtpParams.options"
},
"1046": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1047": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1048": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams"
+ "qualifiedName": "__type.captchaToken"
},
"1049": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.email"
+ "qualifiedName": "VerifyEmailOtpParams"
},
"1050": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.token"
+ "qualifiedName": "VerifyEmailOtpParams.email"
},
"1051": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.type"
+ "qualifiedName": "VerifyEmailOtpParams.token"
},
"1052": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.options"
+ "qualifiedName": "VerifyEmailOtpParams.type"
},
"1053": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyEmailOtpParams.options"
},
"1054": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1055": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1056": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams"
+ "qualifiedName": "__type.captchaToken"
},
"1057": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.token_hash"
+ "qualifiedName": "VerifyTokenHashParams"
},
"1058": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.type"
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
},
"1059": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MobileOtpType"
+ "qualifiedName": "VerifyTokenHashParams.type"
},
"1060": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EmailOtpType"
+ "qualifiedName": "MobileOtpType"
},
"1061": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "ResendParams"
+ "qualifiedName": "EmailOtpType"
},
"1062": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "ResendParams"
},
"1063": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1064": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1065": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1066": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1067": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"1068": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.emailRedirectTo"
},
"1069": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1070": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1071": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.type"
},
"1072": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"1073": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1074": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1075": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithSSO"
+ "qualifiedName": "__type.captchaToken"
},
"1076": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithSSO"
},
"1077": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.providerId"
+ "qualifiedName": "__type"
},
"1078": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.providerId"
},
"1079": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1080": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1081": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1082": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.captchaToken"
},
"1083": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1084": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.domain"
+ "qualifiedName": "__type"
},
"1085": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.domain"
},
"1086": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1087": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1088": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1089": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.captchaToken"
},
"1090": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateSignupLinkParams"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1091": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateSignupLinkParams"
},
"1092": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1093": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1094": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.password"
+ "qualifiedName": "__type.email"
},
"1095": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.password"
},
"1096": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ "qualifiedName": "__type.options"
},
"1097": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
},
"1098": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1099": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1100": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1101": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateRecoveryLinkParams"
+ "qualifiedName": "__type.options"
},
"1102": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateRecoveryLinkParams"
},
"1103": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1104": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1105": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1106": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateEmailChangeLinkParams"
+ "qualifiedName": "__type.options"
},
"1107": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateEmailChangeLinkParams"
},
"1108": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1109": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1110": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.newEmail"
+ "qualifiedName": "__type.email"
},
"1111": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.newEmail"
},
"1112": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions"
+ "qualifiedName": "__type.options"
},
"1113": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.data"
+ "qualifiedName": "GenerateLinkOptions"
},
"1114": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.redirectTo"
+ "qualifiedName": "GenerateLinkOptions.data"
},
"1115": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkParams"
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
},
"1116": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkResponse"
+ "qualifiedName": "GenerateLinkParams"
},
"1117": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkResponse"
},
"1118": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.properties"
+ "qualifiedName": "__type"
},
"1119": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.properties"
},
"1120": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkProperties"
+ "qualifiedName": "__type.user"
},
"1121": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkProperties"
},
"1122": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.action_link"
+ "qualifiedName": "__type"
},
"1123": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email_otp"
+ "qualifiedName": "__type.action_link"
},
"1124": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.hashed_token"
+ "qualifiedName": "__type.email_otp"
},
"1125": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_to"
+ "qualifiedName": "__type.hashed_token"
},
"1126": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.verification_type"
+ "qualifiedName": "__type.redirect_to"
},
"1127": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkType"
+ "qualifiedName": "__type.verification_type"
},
"1128": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollParams"
+ "qualifiedName": "GenerateLinkType"
},
"1129": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAUnenrollParams"
+ "qualifiedName": "MFAEnrollParams"
},
"1130": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAUnenrollParams"
},
"1131": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factorId"
+ "qualifiedName": "__type"
},
"1132": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyTOTPParams"
+ "qualifiedName": "__type.factorId"
},
"1133": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyPhoneParams"
+ "qualifiedName": "MFAVerifyTOTPParams"
},
"1134": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFields"
+ "qualifiedName": "MFAVerifyPhoneParams"
},
"1135": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
},
"1136": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.webauthn"
+ "qualifiedName": "__type"
},
"1137": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.webauthn"
},
"1138": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParams"
+ "qualifiedName": "T"
},
"1139": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "MFAVerifyWebauthnParams"
},
"1140": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyParams"
+ "qualifiedName": "T"
},
"1141": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFATOTPChannel"
+ "qualifiedName": "MFAVerifyParams"
},
"1142": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeTOTPParams"
+ "qualifiedName": "MFATOTPChannel"
},
"1143": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengePhoneParams"
+ "qualifiedName": "MFAChallengeTOTPParams"
},
"1144": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeWebauthnParams"
+ "qualifiedName": "MFAChallengePhoneParams"
},
"1145": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeParams"
+ "qualifiedName": "MFAChallengeWebauthnParams"
},
"1146": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeAndVerifyParams"
+ "qualifiedName": "MFAChallengeParams"
},
"1147": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponseData"
+ "qualifiedName": "MFAChallengeAndVerifyParams"
},
"1148": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAVerifyResponseData"
},
"1149": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type"
},
"1150": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_type"
+ "qualifiedName": "__type.access_token"
},
"1151": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.expires_in"
+ "qualifiedName": "__type.token_type"
},
"1152": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.refresh_token"
+ "qualifiedName": "__type.expires_in"
},
"1153": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.refresh_token"
},
"1154": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponse"
+ "qualifiedName": "__type.user"
},
"1155": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollResponse"
+ "qualifiedName": "AuthMFAVerifyResponse"
},
"1156": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAUnenrollResponse"
+ "qualifiedName": "AuthMFAEnrollResponse"
},
"1157": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAUnenrollResponse"
},
"1158": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1159": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ "qualifiedName": "__type.id"
},
"1160": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengePhoneResponse"
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
},
"1161": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
},
"1162": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
"1163": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
"1164": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
"1165": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAListFactorsResponse"
+ "qualifiedName": "AuthMFAChallengeResponse"
},
"1166": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAListFactorsResponse"
},
"1167": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.all"
+ "qualifiedName": "__type"
},
"1168": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.all"
},
"1169": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthenticatorAssuranceLevels"
+ "qualifiedName": "T"
},
"1170": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ "qualifiedName": "AuthenticatorAssuranceLevels"
},
"1171": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
"1172": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentLevel"
+ "qualifiedName": "__type"
},
"1173": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextLevel"
+ "qualifiedName": "__type.currentLevel"
},
"1174": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentAuthenticationMethods"
+ "qualifiedName": "__type.nextLevel"
},
"1175": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi"
+ "qualifiedName": "__type.currentAuthenticationMethods"
},
"1176": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "GoTrueMFAApi"
},
"1177": {
"sourceFileName": "src/lib/types.ts",
@@ -101401,79 +101597,79 @@
},
"1178": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1179": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1180": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1181": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1182": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "issuer"
+ "qualifiedName": "friendlyName"
},
"1183": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "issuer"
},
"1184": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1185": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1186": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1187": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1188": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "friendlyName"
},
"1189": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "phone"
},
"1190": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1191": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1192": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1193": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1194": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1195": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1196": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "params"
},
"1197": {
"sourceFileName": "src/lib/types.ts",
@@ -101481,243 +101677,243 @@
},
"1198": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1199": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1200": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1201": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1202": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1203": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1204": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1205": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1206": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1207": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1208": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1209": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1210": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "expires_at"
},
"1211": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1212": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1213": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1214": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1215": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "factorId"
},
"1216": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "channel"
},
"1217": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1218": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1219": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1220": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1221": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1222": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1223": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1224": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1225": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "expires_at"
},
"1226": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1227": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1228": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1229": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1230": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "factorId"
},
"1231": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1232": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpId"
+ "qualifiedName": "__type"
},
"1233": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpOrigins"
+ "qualifiedName": "__type.rpId"
},
"1234": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.rpOrigins"
},
"1235": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1236": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1237": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1238": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1239": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1240": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1241": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1242": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1243": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "expires_at"
},
"1244": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1245": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1246": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type.type"
},
"1247": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.credential_options"
},
"1248": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"1249": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"1250": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1251": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type.type"
},
"1252": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.credential_options"
},
"1253": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"1254": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type.publicKey"
},
"1255": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1256": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1257": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "params"
},
"1258": {
"sourceFileName": "src/lib/types.ts",
@@ -101725,83 +101921,83 @@
},
"1259": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1260": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1261": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1262": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1263": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1264": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1265": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1266": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1267": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1268": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1269": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1270": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1271": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1272": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1273": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1274": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1275": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "challengeId"
},
"1276": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "webauthn"
},
"1277": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1278": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "params"
},
"1279": {
"sourceFileName": "src/lib/types.ts",
@@ -101809,11 +102005,11 @@
},
"1280": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1281": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "params"
},
"1282": {
"sourceFileName": "src/lib/types.ts",
@@ -101821,23 +102017,23 @@
},
"1283": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1284": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1285": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1286": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "factorId"
},
"1287": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "code"
},
"1288": {
"sourceFileName": "src/lib/types.ts",
@@ -101845,7 +102041,7 @@
},
"1289": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1290": {
"sourceFileName": "src/lib/types.ts",
@@ -101853,71 +102049,71 @@
},
"1291": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "jwt"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1292": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.webauthn"
+ "qualifiedName": "jwt"
},
"1293": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ "qualifiedName": "GoTrueMFAApi.webauthn"
},
"1294": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
"1295": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1296": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ "qualifiedName": "__type.id"
},
"1297": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
"1298": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1299": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type.id"
},
"1300": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ "qualifiedName": "__type.userId"
},
"1301": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
},
"1302": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factors"
+ "qualifiedName": "__type"
},
"1303": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsParams"
+ "qualifiedName": "__type.factors"
},
"1304": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
},
"1305": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type"
},
"1306": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi"
+ "qualifiedName": "__type.userId"
},
"1307": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "GoTrueAdminMFAApi"
},
"1308": {
"sourceFileName": "src/lib/types.ts",
@@ -101925,11 +102121,11 @@
},
"1309": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1310": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "params"
},
"1311": {
"sourceFileName": "src/lib/types.ts",
@@ -101937,479 +102133,479 @@
},
"1312": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1313": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupportedStorage"
+ "qualifiedName": "params"
},
"1314": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SupportedStorage"
},
"1315": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.isServer"
+ "qualifiedName": "__type"
},
"1316": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "InitializeResult"
+ "qualifiedName": "__type.isServer"
},
"1317": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "InitializeResult"
},
"1318": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type"
},
"1319": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CallRefreshTokenResult"
+ "qualifiedName": "__type.error"
},
"1320": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Pagination"
+ "qualifiedName": "CallRefreshTokenResult"
},
"1321": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Pagination"
},
"1322": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextPage"
+ "qualifiedName": "__type"
},
"1323": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.lastPage"
+ "qualifiedName": "__type.nextPage"
},
"1324": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.total"
+ "qualifiedName": "__type.lastPage"
},
"1325": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.total"
+ },
+ "1326": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "1327": {
+ "1328": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "PageParams"
},
- "1328": {
+ "1329": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1329": {
+ "1330": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.page"
},
- "1330": {
+ "1331": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.perPage"
},
- "1331": {
+ "1332": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignOut"
},
- "1332": {
+ "1333": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1333": {
+ "1334": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.scope"
},
- "1334": {
+ "1335": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollTOTPParams"
},
- "1335": {
+ "1336": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollPhoneParams"
},
- "1336": {
+ "1337": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollWebauthnParams"
},
- "1337": {
+ "1338": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollTOTPResponse"
},
- "1338": {
+ "1339": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollPhoneResponse"
},
- "1339": {
+ "1340": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
- "1340": {
+ "1341": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtHeader"
},
- "1341": {
+ "1342": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1342": {
+ "1343": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.alg"
},
- "1343": {
+ "1344": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.kid"
},
- "1344": {
+ "1345": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.typ"
},
- "1345": {
+ "1346": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequiredClaims"
},
- "1346": {
+ "1347": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1347": {
+ "1348": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1348": {
+ "1349": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1349": {
+ "1350": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1350": {
+ "1351": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1351": {
+ "1352": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1352": {
+ "1353": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1353": {
+ "1354": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1354": {
+ "1355": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1355": {
+ "1356": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload"
},
- "1356": {
+ "1357": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.email"
},
- "1357": {
+ "1358": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.phone"
},
- "1358": {
+ "1359": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.is_anonymous"
},
- "1359": {
+ "1360": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.jti"
},
- "1360": {
+ "1361": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.nbf"
},
- "1361": {
+ "1362": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.app_metadata"
},
- "1362": {
+ "1363": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.user_metadata"
},
- "1363": {
+ "1364": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.amr"
},
- "1364": {
+ "1365": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.ref"
},
- "1365": {
+ "1366": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1366": {
+ "1367": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1367": {
+ "1368": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1368": {
+ "1369": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1369": {
+ "1370": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1370": {
+ "1371": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1371": {
+ "1372": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1372": {
+ "1373": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1373": {
+ "1374": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.__index"
},
- "1375": {
+ "1376": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK"
},
- "1376": {
+ "1377": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.kty"
},
- "1377": {
+ "1378": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.key_ops"
},
- "1378": {
+ "1379": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.alg"
},
- "1379": {
+ "1380": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.kid"
},
- "1380": {
+ "1381": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.__index"
},
- "1382": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SIGN_OUT_SCOPES"
- },
"1383": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignOutScope"
+ "qualifiedName": "SIGN_OUT_SCOPES"
},
"1384": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientGrantType"
+ "qualifiedName": "SignOutScope"
},
"1385": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponseType"
+ "qualifiedName": "OAuthClientGrantType"
},
"1386": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientType"
+ "qualifiedName": "OAuthClientResponseType"
},
"1387": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientRegistrationType"
+ "qualifiedName": "OAuthClientType"
},
"1388": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClient"
+ "qualifiedName": "OAuthClientRegistrationType"
},
"1389": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClient"
},
"1390": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "__type"
},
"1391": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.client_id"
},
"1392": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_secret"
+ "qualifiedName": "__type.client_name"
},
"1393": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "__type.client_secret"
},
"1394": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "__type.client_type"
},
"1395": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "__type.token_endpoint_auth_method"
},
"1396": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.registration_type"
},
"1397": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_uri"
},
"1398": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.logo_uri"
},
"1399": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1400": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.grant_types"
},
"1401": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.response_types"
},
"1402": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "__type.scope"
},
"1403": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "__type.created_at"
},
"1404": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "__type.updated_at"
},
"1405": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "CreateOAuthClientParams"
},
"1406": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1407": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.client_name"
},
"1408": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
"1409": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1410": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.grant_types"
},
"1411": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.response_types"
},
"1412": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UpdateOAuthClientParams"
+ "qualifiedName": "__type.scope"
},
"1413": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UpdateOAuthClientParams"
},
"1414": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1415": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.client_name"
},
"1416": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_uri"
},
"1417": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.logo_uri"
},
"1418": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1419": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "__type.grant_types"
},
"1420": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "OAuthClientResponse"
},
"1421": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientListResponse"
},
"1422": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1423": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1424": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1425": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.clients"
},
"1426": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.aud"
},
"1427": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"1428": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1429": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1430": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1431": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.clients"
},
"1432": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "__type.error"
},
"1433": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "GoTrueAdminOAuthApi"
},
"1434": {
"sourceFileName": "src/lib/types.ts",
@@ -102417,11 +102613,11 @@
},
"1435": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1436": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "params"
},
"1437": {
"sourceFileName": "src/lib/types.ts",
@@ -102429,11 +102625,11 @@
},
"1438": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1439": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "params"
},
"1440": {
"sourceFileName": "src/lib/types.ts",
@@ -102441,11 +102637,11 @@
},
"1441": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1442": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "clientId"
},
"1443": {
"sourceFileName": "src/lib/types.ts",
@@ -102453,15 +102649,15 @@
},
"1444": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1445": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "clientId"
},
"1446": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "params"
},
"1447": {
"sourceFileName": "src/lib/types.ts",
@@ -102469,23 +102665,23 @@
},
"1448": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1449": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "clientId"
},
"1450": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1451": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"1452": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type.error"
},
"1453": {
"sourceFileName": "src/lib/types.ts",
@@ -102493,131 +102689,131 @@
},
"1454": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1455": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationClient"
+ "qualifiedName": "clientId"
},
"1456": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationClient"
},
"1457": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1458": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.name"
+ "qualifiedName": "__type.id"
},
"1459": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.uri"
+ "qualifiedName": "__type.name"
},
"1460": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.uri"
},
"1461": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationDetails"
+ "qualifiedName": "__type.logo_uri"
},
"1462": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
"1463": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.authorization_id"
+ "qualifiedName": "__type"
},
"1464": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uri"
+ "qualifiedName": "__type.authorization_id"
},
"1465": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type.redirect_uri"
},
"1466": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.client"
},
"1467": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.user"
},
"1468": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1469": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.id"
},
"1470": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.email"
},
"1471": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthRedirect"
+ "qualifiedName": "__type.scope"
},
"1472": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthRedirect"
},
"1473": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_url"
+ "qualifiedName": "__type"
},
"1474": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ "qualifiedName": "__type.redirect_url"
},
"1475": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthConsentResponse"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
"1476": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthGrant"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
"1477": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthGrant"
},
"1478": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type"
},
"1479": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type.client"
},
"1480": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.granted_at"
+ "qualifiedName": "__type.scopes"
},
"1481": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthGrantsResponse"
+ "qualifiedName": "__type.granted_at"
},
"1482": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthRevokeGrantResponse"
+ "qualifiedName": "AuthOAuthGrantsResponse"
},
"1483": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthRevokeGrantResponse"
},
"1484": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi"
+ "qualifiedName": "__type"
},
"1485": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "AuthOAuthServerApi"
},
"1486": {
"sourceFileName": "src/lib/types.ts",
@@ -102625,11 +102821,11 @@
},
"1487": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
"1488": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "authorizationId"
},
"1489": {
"sourceFileName": "src/lib/types.ts",
@@ -102637,23 +102833,23 @@
},
"1490": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
"1491": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1492": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1493": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1494": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1495": {
"sourceFileName": "src/lib/types.ts",
@@ -102661,23 +102857,23 @@
},
"1496": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
},
"1497": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1498": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1499": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1500": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.listGrants"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1501": {
"sourceFileName": "src/lib/types.ts",
@@ -102685,7 +102881,7 @@
},
"1502": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
},
"1503": {
"sourceFileName": "src/lib/types.ts",
@@ -102693,19 +102889,19 @@
},
"1504": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
},
"1505": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1506": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clientId"
+ "qualifiedName": "__type"
},
"1507": {
- "sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthError"
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.clientId"
},
"1508": {
"sourceFileName": "src/lib/errors.ts",
@@ -102713,11 +102909,11 @@
},
"1509": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthError"
},
"1510": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthApiError"
+ "qualifiedName": "error"
},
"1511": {
"sourceFileName": "src/lib/errors.ts",
@@ -102725,11 +102921,11 @@
},
"1512": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthApiError"
},
"1513": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthSessionMissingError"
+ "qualifiedName": "error"
},
"1514": {
"sourceFileName": "src/lib/errors.ts",
@@ -102737,11 +102933,11 @@
},
"1515": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthSessionMissingError"
},
"1516": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthImplicitGrantRedirectError"
+ "qualifiedName": "error"
},
"1517": {
"sourceFileName": "src/lib/errors.ts",
@@ -102749,11 +102945,11 @@
},
"1518": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthImplicitGrantRedirectError"
},
"1519": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthPKCECodeVerifierMissingError"
+ "qualifiedName": "error"
},
"1520": {
"sourceFileName": "src/lib/errors.ts",
@@ -102761,11 +102957,11 @@
},
"1521": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthPKCECodeVerifierMissingError"
},
"1522": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthRetryableFetchError"
+ "qualifiedName": "error"
},
"1523": {
"sourceFileName": "src/lib/errors.ts",
@@ -102773,11 +102969,11 @@
},
"1524": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthRetryableFetchError"
},
"1525": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthWeakPasswordError"
+ "qualifiedName": "error"
},
"1526": {
"sourceFileName": "src/lib/errors.ts",
@@ -102785,593 +102981,597 @@
},
"1527": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthWeakPasswordError"
},
"1528": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError"
+ "qualifiedName": "error"
},
"1529": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError.__constructor"
+ "qualifiedName": "AuthError"
},
"1530": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError"
+ "qualifiedName": "AuthError.__constructor"
},
"1531": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "message"
+ "qualifiedName": "AuthError"
},
"1532": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "status"
+ "qualifiedName": "message"
},
"1533": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "code"
+ "qualifiedName": "status"
},
"1534": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError.code"
+ "qualifiedName": "code"
},
"1535": {
+ "sourceFileName": "src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1536": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1536": {
+ "1537": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1538": {
+ "1539": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1539": {
+ "1540": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1540": {
+ "1541": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1541": {
+ "1542": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1542": {
+ "1543": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1543": {
+ "1544": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1544": {
+ "1545": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1545": {
+ "1546": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1546": {
+ "1547": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1548": {
+ "1549": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1549": {
+ "1550": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1550": {
+ "1551": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1551": {
+ "1552": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1552": {
+ "1553": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1553": {
+ "1554": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1554": {
+ "1555": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1555": {
+ "1556": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1556": {
+ "1557": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1558": {
+ "1559": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1559": {
+ "1560": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1560": {
+ "1561": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1561": {
+ "1562": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1562": {
+ "1563": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "name"
},
- "1563": {
+ "1564": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1564": {
+ "1565": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1565": {
+ "1566": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1566": {
+ "1567": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1567": {
+ "1568": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1568": {
+ "1569": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1570": {
+ "1571": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1571": {
+ "1572": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1572": {
+ "1573": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1573": {
+ "1574": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1574": {
+ "1575": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1575": {
+ "1576": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1576": {
+ "1577": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1578": {
+ "1579": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1579": {
+ "1580": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1580": {
+ "1581": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1581": {
+ "1582": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1582": {
+ "1583": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1583": {
+ "1584": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1584": {
+ "1585": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1586": {
+ "1587": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1587": {
+ "1588": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1588": {
+ "1589": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1589": {
+ "1590": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1590": {
+ "1591": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1591": {
+ "1592": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1592": {
+ "1593": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1593": {
+ "1594": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1595": {
+ "1596": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1596": {
+ "1597": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1597": {
+ "1598": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1598": {
+ "1599": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1599": {
+ "1600": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1600": {
+ "1601": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1601": {
+ "1602": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1602": {
+ "1603": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1603": {
+ "1604": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1604": {
+ "1605": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1605": {
+ "1606": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1606": {
+ "1607": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1607": {
+ "1608": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1608": {
+ "1609": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1609": {
+ "1610": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1610": {
+ "1611": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1611": {
+ "1612": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1612": {
+ "1613": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1613": {
+ "1614": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1614": {
+ "1615": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1615": {
+ "1616": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1616": {
+ "1617": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1617": {
+ "1618": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1618": {
+ "1619": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1619": {
+ "1620": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1620": {
+ "1621": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1622": {
+ "1623": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1623": {
+ "1624": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1624": {
+ "1625": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1625": {
+ "1626": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1626": {
+ "1627": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1627": {
+ "1628": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1628": {
+ "1629": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1629": {
+ "1630": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1630": {
+ "1631": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1631": {
+ "1632": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1632": {
+ "1633": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1633": {
+ "1634": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1634": {
+ "1635": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1635": {
+ "1636": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1636": {
+ "1637": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1637": {
+ "1638": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1638": {
+ "1639": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1639": {
+ "1640": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1640": {
+ "1641": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1641": {
+ "1642": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1642": {
+ "1643": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1643": {
+ "1644": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1644": {
+ "1645": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1645": {
+ "1646": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1646": {
+ "1647": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1647": {
+ "1648": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1649": {
+ "1650": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError"
},
- "1650": {
+ "1651": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError.__constructor"
},
- "1651": {
+ "1652": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError"
},
- "1652": {
+ "1653": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1653": {
+ "1654": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1654": {
+ "1655": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1655": {
+ "1656": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1657": {
+ "1658": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1658": {
+ "1659": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1659": {
+ "1660": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1660": {
+ "1661": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1661": {
+ "1662": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1662": {
+ "1663": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1663": {
+ "1664": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1664": {
+ "1665": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1665": {
+ "1666": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1667": {
+ "1668": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1668": {
+ "1669": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1669": {
+ "1670": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1670": {
+ "1671": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1671": {
+ "1672": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1672": {
+ "1673": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1673": {
+ "1674": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1674": {
+ "1675": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1675": {
+ "1676": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1676": {
+ "1677": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1677": {
+ "1678": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1679": {
+ "1680": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1680": {
+ "1681": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1681": {
+ "1682": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1682": {
+ "1683": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1683": {
+ "1684": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1684": {
+ "1685": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1685": {
+ "1686": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1686": {
+ "1687": {
"sourceFileName": "",
"qualifiedName": "__type"
}
@@ -103413,7 +103613,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"signatures": [
@@ -103447,7 +103647,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"typeParameters": [
@@ -103516,7 +103716,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -103537,7 +103737,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -103764,7 +103964,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -103790,7 +103990,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 54,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
}
],
"type": {
@@ -103809,7 +104009,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -103851,7 +104051,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -103872,7 +104072,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -103893,7 +104093,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -103917,7 +104117,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -103943,7 +104143,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 55,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
}
],
"type": {
@@ -103963,7 +104163,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
]
}
@@ -104020,7 +104220,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -104041,7 +104241,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -104270,7 +104470,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -104296,7 +104496,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -104317,7 +104517,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -104360,7 +104560,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -104381,7 +104581,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -104404,7 +104604,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -104430,7 +104630,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -104456,7 +104656,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -104475,7 +104675,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"signatures": [
@@ -104526,7 +104726,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"typeParameters": [
@@ -104581,7 +104781,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -104601,7 +104801,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -104626,7 +104826,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -104646,7 +104846,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -104871,7 +105071,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
}
],
"signatures": [
@@ -104913,7 +105113,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
}
],
"typeParameters": [
@@ -104998,7 +105198,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"signatures": [
@@ -105021,7 +105221,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"parameters": [
@@ -105066,7 +105266,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"signatures": [
@@ -105100,7 +105300,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"typeParameters": [
@@ -105207,7 +105407,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"signatures": [
@@ -105222,7 +105422,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"parameters": [
@@ -105354,7 +105554,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"signatures": [
@@ -105369,7 +105569,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"parameters": [
@@ -105477,7 +105677,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"signatures": [
@@ -105506,7 +105706,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"type": {
@@ -105599,7 +105799,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 12,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
}
],
"typeParameters": [
@@ -105733,7 +105933,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
}
],
"signatures": [
@@ -105767,7 +105967,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
}
],
"typeParameters": [
@@ -105824,7 +106024,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -105850,7 +106050,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -106104,7 +106304,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 76,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L76"
}
],
"type": {
@@ -106341,7 +106541,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 74,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L74"
}
],
"type": {
@@ -106376,7 +106576,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 75,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L75"
}
],
"type": {
@@ -106409,7 +106609,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 77,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L77"
}
],
"type": {
@@ -106438,7 +106638,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 78,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
}
],
"type": {
@@ -106459,7 +106659,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 73,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L73"
}
]
}
@@ -106524,7 +106724,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
}
],
"type": {
@@ -106751,7 +106951,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
}
],
"type": {
@@ -106777,7 +106977,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
}
],
"type": {
@@ -106800,7 +107000,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
}
],
"type": {
@@ -106819,7 +107019,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L41"
}
],
"type": {
@@ -106858,19 +107058,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L140"
}
],
"signatures": [
@@ -106885,7 +107085,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
}
],
"typeParameters": [
@@ -106984,7 +107184,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
}
],
"typeParameters": [
@@ -107085,7 +107285,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
}
],
"signatures": [
@@ -107119,7 +107319,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
}
],
"typeParameters": [
@@ -107345,7 +107545,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 229,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L229"
}
],
"type": {
@@ -107395,7 +107595,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 228,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L228"
}
],
"type": {
@@ -107441,7 +107641,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 227,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L227"
}
],
"type": {
@@ -107462,7 +107662,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 226,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L226"
}
]
}
@@ -107569,7 +107769,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
}
],
"signatures": [
@@ -107592,7 +107792,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
}
],
"typeParameters": [
@@ -107732,7 +107932,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 16,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
}
],
"typeParameters": [
@@ -107797,7 +107997,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -107823,7 +108023,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -107851,7 +108051,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 22,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
}
]
}
@@ -108125,7 +108325,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"signatures": [
@@ -108154,7 +108354,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"parameters": [
@@ -108184,7 +108384,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 73,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -108203,7 +108403,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -108222,7 +108422,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -108241,7 +108441,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -108261,7 +108461,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
]
}
@@ -108299,7 +108499,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L9"
}
],
"type": {
@@ -108318,7 +108518,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L7"
}
],
"type": {
@@ -108337,7 +108537,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L8"
}
],
"type": {
@@ -108361,7 +108561,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 6,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L6"
}
],
"extendedTypes": [
@@ -108394,7 +108594,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"signatures": [
@@ -108428,7 +108628,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"typeParameters": [
@@ -108557,7 +108757,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -108578,7 +108778,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -108805,7 +109005,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -108831,7 +109031,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 54,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
}
],
"type": {
@@ -108850,7 +109050,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -108892,7 +109092,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -108913,7 +109113,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -108934,7 +109134,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -108958,7 +109158,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -108984,7 +109184,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 55,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
}
],
"type": {
@@ -109004,7 +109204,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
]
}
@@ -109104,7 +109304,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -109131,7 +109331,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -109366,7 +109566,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -109398,7 +109598,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -109425,7 +109625,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -109474,7 +109674,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -109501,7 +109701,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -109530,7 +109730,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -109562,7 +109762,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -109594,7 +109794,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -109620,7 +109820,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -109645,7 +109845,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -109748,19 +109948,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 437,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449"
}
],
"signatures": [
@@ -109775,7 +109975,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 437,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
}
],
"typeParameters": [
@@ -109883,7 +110083,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
}
],
"parameters": [
@@ -110009,19 +110209,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 414,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 422,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L422"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L422"
}
],
"signatures": [
@@ -110036,7 +110236,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
}
],
"typeParameters": [
@@ -110144,7 +110344,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 414,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
}
],
"parameters": [
@@ -110226,7 +110426,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -110259,7 +110459,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -110307,7 +110507,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
}
],
"signatures": [
@@ -110362,7 +110562,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
}
],
"typeParameters": [
@@ -110560,7 +110760,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -110593,7 +110793,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -110649,7 +110849,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -110687,7 +110887,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -110729,7 +110929,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -110776,7 +110976,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -110822,7 +111022,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -110860,7 +111060,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -110881,7 +111081,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -111042,19 +111242,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 664,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L683"
}
],
"signatures": [
@@ -111069,7 +111269,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 664,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
}
],
"typeParameters": [
@@ -111249,7 +111449,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
}
],
"parameters": [
@@ -111307,7 +111507,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -111340,7 +111540,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -111449,19 +111649,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L145"
}
],
"signatures": [
@@ -111476,7 +111676,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
}
],
"typeParameters": [
@@ -111549,7 +111749,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
}
],
"parameters": [
@@ -111640,19 +111840,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 150,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 158,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158"
}
],
"signatures": [
@@ -111667,7 +111867,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 150,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
}
],
"typeParameters": [
@@ -111740,7 +111940,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
}
],
"parameters": [
@@ -111831,19 +112031,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 234,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L242"
}
],
"signatures": [
@@ -111858,7 +112058,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 234,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
}
],
"typeParameters": [
@@ -111917,7 +112117,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
}
],
"parameters": [
@@ -112008,19 +112208,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L258"
}
],
"signatures": [
@@ -112035,7 +112235,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
}
],
"typeParameters": [
@@ -112101,7 +112301,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
}
],
"parameters": [
@@ -112199,19 +112399,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 263,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L274"
}
],
"signatures": [
@@ -112226,7 +112426,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 263,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
}
],
"typeParameters": [
@@ -112292,7 +112492,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
}
],
"parameters": [
@@ -112344,7 +112544,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
}
],
"signatures": [
@@ -112383,7 +112583,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
}
],
"typeParameters": [
@@ -112671,19 +112871,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 307,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 324,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L324"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L324"
}
],
"signatures": [
@@ -112698,7 +112898,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 307,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
}
],
"typeParameters": [
@@ -112789,7 +112989,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
}
],
"parameters": [
@@ -112843,7 +113043,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
}
],
"signatures": [
@@ -112914,7 +113114,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
}
],
"typeParameters": [
@@ -113139,19 +113339,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L197"
}
],
"signatures": [
@@ -113166,7 +113366,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
}
],
"typeParameters": [
@@ -113225,7 +113425,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
}
],
"parameters": [
@@ -113316,19 +113516,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L213"
}
],
"signatures": [
@@ -113343,7 +113543,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
}
],
"typeParameters": [
@@ -113409,7 +113609,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
}
],
"parameters": [
@@ -113507,19 +113707,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 218,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 222,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L229"
}
],
"signatures": [
@@ -113534,7 +113734,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 218,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
}
],
"typeParameters": [
@@ -113600,7 +113800,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 222,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
}
],
"parameters": [
@@ -113654,7 +113854,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -113687,7 +113887,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -113762,7 +113962,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -113791,7 +113991,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -113812,7 +114012,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -113894,19 +114094,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 171,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L171"
}
],
"signatures": [
@@ -113921,7 +114121,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
}
],
"typeParameters": [
@@ -113994,7 +114194,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
}
],
"parameters": [
@@ -114085,19 +114285,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L184"
}
],
"signatures": [
@@ -114112,7 +114312,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
}
],
"typeParameters": [
@@ -114185,7 +114385,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
}
],
"parameters": [
@@ -114266,19 +114466,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 597,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 598,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 606,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606"
}
],
"signatures": [
@@ -114293,7 +114493,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 597,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
}
],
"typeParameters": [
@@ -114370,7 +114570,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 598,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
}
],
"parameters": [
@@ -114421,7 +114621,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -114446,7 +114646,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -114652,7 +114852,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -114693,7 +114893,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -114800,7 +115000,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
}
],
"signatures": [
@@ -114839,7 +115039,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
}
],
"typeParameters": [
@@ -115074,19 +115274,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 613,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 618,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 632,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L632"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L632"
}
],
"signatures": [
@@ -115101,7 +115301,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 613,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
}
],
"typeParameters": [
@@ -115190,7 +115390,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 618,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
}
],
"parameters": [
@@ -115246,7 +115446,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 388,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
}
],
"signatures": [
@@ -115285,7 +115485,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 388,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
}
],
"typeParameters": [
@@ -115471,7 +115671,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 652,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
}
],
"signatures": [
@@ -115510,7 +115710,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 652,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
}
],
"parameters": [
@@ -115585,7 +115785,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 657,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
}
],
"type": {
@@ -115614,7 +115814,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 657,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
}
],
"type": {
@@ -115635,7 +115835,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 657,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
}
]
}
@@ -115797,31 +115997,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -115838,7 +116038,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -115899,7 +116099,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -115920,7 +116120,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -115941,7 +116141,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -115961,7 +116161,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -115991,7 +116191,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -116036,7 +116236,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -116057,7 +116257,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -116078,7 +116278,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -116098,7 +116298,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -116154,7 +116354,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -116215,7 +116415,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -116236,7 +116436,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -116257,7 +116457,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -116277,7 +116477,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -116333,7 +116533,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -116378,7 +116578,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -116399,7 +116599,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -116420,7 +116620,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -116440,7 +116640,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -116521,19 +116721,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 548,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L548"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L548"
}
],
"signatures": [
@@ -116548,7 +116748,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
}
],
"typeParameters": [
@@ -116637,7 +116837,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
}
],
"parameters": [
@@ -116700,7 +116900,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"signatures": [
@@ -116753,7 +116953,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"typeParameters": [
@@ -116808,7 +117008,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -116828,7 +117028,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -116853,7 +117053,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -116873,7 +117073,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -117106,7 +117306,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -117171,7 +117371,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -117265,7 +117465,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -117294,7 +117494,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -117315,7 +117515,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -117397,19 +117597,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 521,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 531,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531"
}
],
"signatures": [
@@ -117424,7 +117624,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 521,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
}
],
"typeParameters": [
@@ -117483,7 +117683,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
}
],
"parameters": [
@@ -117574,19 +117774,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 463,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 472,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L472"
}
],
"signatures": [
@@ -117601,7 +117801,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 463,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
}
],
"typeParameters": [
@@ -117660,7 +117860,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
}
],
"parameters": [
@@ -117759,19 +117959,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 477,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 487,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L487"
}
],
"signatures": [
@@ -117786,7 +117986,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 477,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
}
],
"typeParameters": [
@@ -117845,7 +118045,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
}
],
"parameters": [
@@ -117936,19 +118136,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 493,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L501"
}
],
"signatures": [
@@ -117963,7 +118163,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
}
],
"typeParameters": [
@@ -118022,7 +118222,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 493,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
}
],
"parameters": [
@@ -118121,19 +118321,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 506,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 507,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 516,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
}
],
"signatures": [
@@ -118148,7 +118348,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 506,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
}
],
"typeParameters": [
@@ -118207,7 +118407,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 507,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
}
],
"parameters": [
@@ -118306,19 +118506,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 294,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 302,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L302"
}
],
"signatures": [
@@ -118333,7 +118533,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
}
],
"typeParameters": [
@@ -118392,7 +118592,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 294,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
}
],
"parameters": [
@@ -118491,19 +118691,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 288,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L288"
}
],
"signatures": [
@@ -118518,7 +118718,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
}
],
"typeParameters": [
@@ -118577,7 +118777,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
}
],
"parameters": [
@@ -118624,7 +118824,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -118668,7 +118868,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -118797,7 +118997,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -118830,7 +119030,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -118863,7 +119063,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -118928,7 +119128,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -119179,7 +119379,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"signatures": [
@@ -119204,7 +119404,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"parameters": [
@@ -119261,7 +119461,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -119302,7 +119502,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -119484,19 +119684,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 559,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 564,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 579,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L579"
}
],
"signatures": [
@@ -119511,7 +119711,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 559,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
}
],
"typeParameters": [
@@ -119583,7 +119783,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 562,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
}
],
"type": {
@@ -119604,7 +119804,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 562,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
}
],
"type": {
@@ -119637,7 +119837,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 562,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
}
]
}
@@ -119660,7 +119860,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 564,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
}
],
"parameters": [
@@ -119716,7 +119916,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 567,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
}
],
"type": {
@@ -119737,7 +119937,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 567,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
}
],
"type": {
@@ -119770,7 +119970,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 567,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
}
]
}
@@ -119797,7 +119997,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"signatures": [
@@ -119833,7 +120033,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"typeParameters": [
@@ -119909,7 +120109,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"signatures": [
@@ -119924,7 +120124,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"parameters": [
@@ -120025,7 +120225,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"signatures": [
@@ -120040,7 +120240,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"parameters": [
@@ -120150,7 +120350,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"signatures": [
@@ -120181,7 +120381,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"type": {
@@ -120320,7 +120520,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 79,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L79"
}
],
"typeParameters": [
@@ -120505,7 +120705,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
}
],
"signatures": [
@@ -120539,7 +120739,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
}
],
"typeParameters": [
@@ -120649,7 +120849,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -120675,7 +120875,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -120742,7 +120942,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 48,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L48"
}
],
"type": {
@@ -120971,7 +121171,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 46,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
}
],
"type": {
@@ -120998,7 +121198,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 47,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L47"
}
],
"type": {
@@ -121019,7 +121219,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 49,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L49"
}
],
"type": {
@@ -121040,7 +121240,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 45,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
}
]
}
@@ -121112,7 +121312,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
}
],
"type": {
@@ -121339,7 +121539,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
}
],
"type": {
@@ -121365,7 +121565,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
}
],
"type": {
@@ -121386,7 +121586,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
}
],
"type": {
@@ -121410,7 +121610,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
}
],
"type": {
@@ -121434,7 +121634,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23"
}
],
"type": {
@@ -121453,7 +121653,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 505,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
}
],
"signatures": [
@@ -121484,7 +121684,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 505,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
}
],
"parameters": [
@@ -121564,7 +121764,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 508,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L508"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L508"
}
],
"type": {
@@ -121597,7 +121797,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 507,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L507"
}
]
}
@@ -121781,19 +121981,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 210,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L210"
}
],
"signatures": [
@@ -121808,7 +122008,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
}
],
"typeParameters": [
@@ -121884,7 +122084,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 158,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L158"
}
],
"type": {
@@ -121917,7 +122117,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 157,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L157"
}
]
}
@@ -122000,7 +122200,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
}
],
"typeParameters": [
@@ -122079,7 +122279,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 172,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L172"
}
],
"type": {
@@ -122113,7 +122313,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 173,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L173"
}
],
"type": {
@@ -122133,7 +122333,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 171,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L171"
}
]
}
@@ -122218,7 +122418,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
}
],
"signatures": [
@@ -122284,7 +122484,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
}
],
"typeParameters": [
@@ -122480,7 +122680,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 108,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L108"
}
],
"type": {
@@ -122538,7 +122738,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 107,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L107"
}
],
"type": {
@@ -122558,7 +122758,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 106,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L106"
}
]
}
@@ -122649,7 +122849,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 452,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
}
],
"signatures": [
@@ -122680,7 +122880,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 452,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
}
],
"typeParameters": [
@@ -122810,7 +123010,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 457,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L457"
}
],
"type": {
@@ -122843,7 +123043,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 456,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L456"
}
]
}
@@ -123139,19 +123339,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 377,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L377"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L377"
}
],
"signatures": [
@@ -123166,7 +123366,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
}
],
"typeParameters": [
@@ -123242,7 +123442,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 263,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L263"
}
],
"type": {
@@ -123276,7 +123476,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 262,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L262"
}
],
"type": {
@@ -123297,7 +123497,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 261,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L261"
}
],
"type": {
@@ -123317,7 +123517,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 260,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L260"
}
]
}
@@ -123400,7 +123600,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
}
],
"typeParameters": [
@@ -123479,7 +123679,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 279,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L279"
}
],
"type": {
@@ -123513,7 +123713,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 280,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L280"
}
],
"type": {
@@ -123534,7 +123734,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 278,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L278"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L278"
}
],
"type": {
@@ -123555,7 +123755,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 277,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L277"
}
],
"type": {
@@ -123575,7 +123775,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 276,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L276"
}
]
}
@@ -123669,7 +123869,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 11,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
}
],
"typeParameters": [
@@ -123779,7 +123979,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -123799,7 +123999,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -123840,7 +124040,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"signatures": [
@@ -123874,7 +124074,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"typeParameters": [
@@ -124003,7 +124203,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -124024,7 +124224,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -124251,7 +124451,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -124277,7 +124477,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 54,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
}
],
"type": {
@@ -124296,7 +124496,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -124338,7 +124538,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -124359,7 +124559,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -124380,7 +124580,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -124404,7 +124604,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -124430,7 +124630,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 55,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
}
],
"type": {
@@ -124450,7 +124650,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
]
}
@@ -124550,7 +124750,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -124577,7 +124777,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -124812,7 +125012,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -124844,7 +125044,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -124871,7 +125071,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -124920,7 +125120,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -124947,7 +125147,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -124976,7 +125176,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -125008,7 +125208,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -125040,7 +125240,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -125064,7 +125264,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -125087,7 +125287,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -125134,7 +125334,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -125165,7 +125365,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -125203,7 +125403,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -125234,7 +125434,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -125290,7 +125490,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -125328,7 +125528,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -125370,7 +125570,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -125417,7 +125617,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -125463,7 +125663,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -125501,7 +125701,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -125522,7 +125722,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -125617,7 +125817,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -125648,7 +125848,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -125701,7 +125901,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -125732,7 +125932,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -125807,7 +126007,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -125836,7 +126036,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -125857,7 +126057,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -125883,7 +126083,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -125906,7 +126106,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -126100,7 +126300,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -126139,7 +126339,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -126370,31 +126570,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -126409,7 +126609,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -126470,7 +126670,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -126491,7 +126691,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -126512,7 +126712,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -126532,7 +126732,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -126555,7 +126755,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -126600,7 +126800,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -126621,7 +126821,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -126642,7 +126842,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -126662,7 +126862,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -126711,7 +126911,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -126772,7 +126972,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -126793,7 +126993,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -126814,7 +127014,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -126834,7 +127034,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -126883,7 +127083,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -126928,7 +127128,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -126949,7 +127149,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -126970,7 +127170,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -126990,7 +127190,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -127017,7 +127217,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"signatures": [
@@ -127070,7 +127270,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"typeParameters": [
@@ -127125,7 +127325,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -127145,7 +127345,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -127170,7 +127370,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -127190,7 +127390,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -127421,7 +127621,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -127484,7 +127684,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -127578,7 +127778,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -127607,7 +127807,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -127628,7 +127828,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -127654,7 +127854,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -127696,7 +127896,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -127823,7 +128023,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -127854,7 +128054,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -127875,7 +128075,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -127938,7 +128138,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -128179,7 +128379,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"signatures": [
@@ -128204,7 +128404,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"parameters": [
@@ -128259,7 +128459,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -128298,7 +128498,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -128388,7 +128588,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"signatures": [
@@ -128424,7 +128624,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"typeParameters": [
@@ -128500,7 +128700,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"signatures": [
@@ -128515,7 +128715,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"parameters": [
@@ -128616,7 +128816,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"signatures": [
@@ -128631,7 +128831,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"parameters": [
@@ -128741,7 +128941,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"signatures": [
@@ -128772,7 +128972,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"type": {
@@ -128909,7 +129109,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
}
],
"typeParameters": [
@@ -129061,7 +129261,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L23"
}
],
"type": {
@@ -129080,7 +129280,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L22"
}
],
"type": {
@@ -129099,7 +129299,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L21"
}
],
"type": {
@@ -129123,7 +129323,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -129149,7 +129349,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -129174,7 +129374,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 20,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L20"
}
],
"extendedTypes": [
@@ -129207,7 +129407,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L18"
}
],
"type": {
@@ -129235,7 +129435,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L17"
}
],
"type": {
@@ -129258,7 +129458,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L16"
}
],
"type": {
@@ -129279,7 +129479,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -129305,7 +129505,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -129330,7 +129530,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 15,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L15"
}
],
"typeParameters": [
@@ -129365,7 +129565,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
],
"type": {
@@ -129390,7 +129590,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/common/common.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/common/common.ts#L55"
}
],
"type": {
@@ -129410,7 +129610,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
]
}
@@ -129427,7 +129627,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L30"
}
],
"typeParameters": [
@@ -129475,7 +129675,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L31"
}
],
"typeParameters": [
@@ -129517,7 +129717,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L29"
}
],
"typeParameters": [
@@ -129575,7 +129775,7 @@
"fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts",
"line": 38,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
}
],
"typeParameters": [
@@ -130160,7 +130360,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 16,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L16"
}
],
"type": {
@@ -130183,7 +130383,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L21"
}
],
"type": {
@@ -130207,7 +130407,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L17"
}
],
"type": {
@@ -130231,7 +130431,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L22"
}
],
"type": {
@@ -130255,7 +130455,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L19"
}
],
"type": {
@@ -130279,7 +130479,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L18"
}
],
"type": {
@@ -130303,7 +130503,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L20"
}
],
"type": {
@@ -130328,7 +130528,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 16,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L16"
}
]
}
@@ -134010,7 +134210,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
}
],
"type": {
@@ -134029,7 +134229,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
}
],
"type": {
@@ -134048,7 +134248,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
}
],
"type": {
@@ -134067,7 +134267,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
}
],
"type": {
@@ -134087,7 +134287,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 134,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
}
]
},
@@ -134109,7 +134309,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
}
],
"type": {
@@ -134128,7 +134328,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
}
],
"type": {
@@ -134147,7 +134347,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 129,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
}
],
"type": {
@@ -134166,7 +134366,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
}
],
"type": {
@@ -134186,7 +134386,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 127,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
}
]
},
@@ -134208,7 +134408,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L33"
}
],
"type": {
@@ -134227,7 +134427,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L34"
}
],
"type": {
@@ -134246,7 +134446,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L32"
}
],
"type": {
@@ -134266,7 +134466,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L31"
}
]
},
@@ -134288,7 +134488,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
}
],
"type": {
@@ -134307,7 +134507,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
}
],
"type": {
@@ -134326,7 +134526,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
}
],
"type": {
@@ -134345,7 +134545,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
}
],
"type": {
@@ -134365,7 +134565,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 141,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
}
]
},
@@ -134395,7 +134595,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"signatures": [
@@ -134429,7 +134629,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"parameters": [
@@ -134502,7 +134702,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"type": {
@@ -134518,7 +134718,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"indexSignatures": [
@@ -134533,7 +134733,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
],
"parameters": [
@@ -134571,7 +134771,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 169,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
}
],
"type": {
@@ -134595,7 +134795,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"type": {
@@ -134611,7 +134811,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"indexSignatures": [
@@ -134626,7 +134826,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"parameters": [
@@ -134664,7 +134864,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
}
],
"type": {
@@ -134683,7 +134883,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 167,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
}
],
"type": {
@@ -134703,7 +134903,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
]
}
@@ -134726,7 +134926,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
}
],
"type": {
@@ -134745,7 +134945,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
}
],
"type": {
@@ -134765,7 +134965,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
}
],
"type": {
@@ -134792,7 +134992,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 203,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
}
],
"type": {
@@ -134814,7 +135014,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
}
],
"type": {
@@ -134836,7 +135036,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
}
],
"type": {
@@ -134855,7 +135055,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
}
],
"type": {
@@ -134884,7 +135084,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
}
],
"type": {
@@ -134911,7 +135111,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 204,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
}
],
"type": {
@@ -134933,7 +135133,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
}
],
"type": {
@@ -134958,7 +135158,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
}
],
"type": {
@@ -134977,7 +135177,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
}
],
"type": {
@@ -135006,7 +135206,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 202,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
}
],
"type": {
@@ -135025,7 +135225,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 557,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
}
],
"signatures": [
@@ -135059,7 +135259,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 557,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
}
],
"parameters": [
@@ -135137,7 +135337,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 560,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
}
],
"type": {
@@ -135157,7 +135357,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 560,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
}
]
}
@@ -135195,7 +135395,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -135215,7 +135415,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
]
}
@@ -135240,7 +135440,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -135259,7 +135459,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -135278,7 +135478,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -135298,7 +135498,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
]
}
@@ -135323,97 +135523,97 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 465,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L532"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L532"
}
],
"signatures": [
@@ -135436,7 +135636,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
}
],
"parameters": [
@@ -135477,7 +135677,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"type": {
@@ -135497,7 +135697,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
]
}
@@ -135522,7 +135722,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 422,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
}
],
"signatures": [
@@ -135537,7 +135737,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 422,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
}
],
"type": {
@@ -135577,7 +135777,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"typeParameters": [
@@ -135600,7 +135800,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"indexSignatures": [
@@ -135615,7 +135815,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"parameters": [
@@ -135679,7 +135879,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"type": {
@@ -135699,7 +135899,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
]
}
@@ -135724,7 +135924,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 427,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
}
],
"signatures": [
@@ -135739,7 +135939,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 427,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
}
],
"parameters": [
@@ -135803,7 +136003,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"typeParameters": [
@@ -135826,7 +136026,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"indexSignatures": [
@@ -135841,7 +136041,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"parameters": [
@@ -135905,7 +136105,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"type": {
@@ -135925,7 +136125,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
]
}
@@ -135950,7 +136150,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 432,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
}
],
"signatures": [
@@ -135965,7 +136165,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 432,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
}
],
"parameters": [
@@ -136029,7 +136229,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"typeParameters": [
@@ -136052,7 +136252,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"indexSignatures": [
@@ -136067,7 +136267,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"parameters": [
@@ -136143,7 +136343,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 437,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
}
],
"signatures": [
@@ -136158,7 +136358,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 437,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
}
],
"parameters": [
@@ -136222,7 +136422,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"typeParameters": [
@@ -136245,7 +136445,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"indexSignatures": [
@@ -136260,7 +136460,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"parameters": [
@@ -136336,7 +136536,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 442,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
}
],
"signatures": [
@@ -136351,7 +136551,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 442,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
}
],
"parameters": [
@@ -136415,7 +136615,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"typeParameters": [
@@ -136438,7 +136638,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"indexSignatures": [
@@ -136453,7 +136653,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"parameters": [
@@ -136529,7 +136729,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 447,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
}
],
"signatures": [
@@ -136544,7 +136744,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 447,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
}
],
"parameters": [
@@ -136608,7 +136808,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"typeParameters": [
@@ -136631,7 +136831,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"indexSignatures": [
@@ -136646,7 +136846,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"parameters": [
@@ -136722,7 +136922,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 452,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
}
],
"signatures": [
@@ -136737,7 +136937,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 452,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
}
],
"parameters": [
@@ -136801,7 +137001,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
}
],
"typeParameters": [
@@ -136824,7 +137024,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
}
],
"indexSignatures": [
@@ -136839,7 +137039,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
}
],
"parameters": [
@@ -136932,7 +137132,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
}
],
"signatures": [
@@ -136947,7 +137147,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
}
],
"parameters": [
@@ -137011,7 +137211,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 465,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
}
],
"parameters": [
@@ -137068,7 +137268,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 467,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
}
],
"type": {
@@ -137088,7 +137288,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 467,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
}
]
}
@@ -137121,7 +137321,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 468,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
}
],
"signatures": [
@@ -137136,7 +137336,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 468,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
}
],
"parameters": [
@@ -137166,7 +137366,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"type": {
@@ -137187,7 +137387,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 471,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
}
],
"type": {
@@ -137210,7 +137410,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
],
"type": {
@@ -137231,7 +137431,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 472,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
],
"type": {
@@ -137251,7 +137451,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 471,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
}
]
}
@@ -137268,7 +137468,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 469,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L469"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L469"
}
],
"type": {
@@ -137288,7 +137488,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 468,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
}
],
"indexSignatures": [
@@ -137303,7 +137503,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 475,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
}
],
"parameters": [
@@ -137366,7 +137566,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"typeParameters": [
@@ -137389,7 +137589,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"indexSignatures": [
@@ -137404,7 +137604,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"parameters": [
@@ -137468,7 +137668,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 480,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
}
],
"type": {
@@ -137488,7 +137688,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 480,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
}
]
}
@@ -137513,7 +137713,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 481,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
],
"signatures": [
@@ -137528,7 +137728,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 481,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
],
"parameters": [
@@ -137558,7 +137758,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 483,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
}
],
"type": {
@@ -137579,7 +137779,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 484,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
}
],
"type": {
@@ -137602,7 +137802,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
],
"type": {
@@ -137623,7 +137823,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 485,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
}
],
"type": {
@@ -137643,7 +137843,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 484,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
}
]
}
@@ -137660,7 +137860,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 488,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
}
],
"type": {
@@ -137682,7 +137882,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 482,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L482"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L482"
}
],
"type": {
@@ -137702,7 +137902,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 481,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
]
}
@@ -137746,7 +137946,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
}
],
"typeParameters": [
@@ -137815,7 +138015,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 493,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
}
],
"type": {
@@ -137838,7 +138038,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 493,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
}
]
}
@@ -137863,7 +138063,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
],
"signatures": [
@@ -137878,7 +138078,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
],
"parameters": [
@@ -137908,7 +138108,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 496,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
}
],
"type": {
@@ -137930,7 +138130,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 497,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
}
],
"type": {
@@ -137963,7 +138163,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
],
"type": {
@@ -137983,7 +138183,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
]
}
@@ -138027,7 +138227,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
}
],
"typeParameters": [
@@ -138050,7 +138250,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
}
],
"indexSignatures": [
@@ -138065,7 +138265,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
}
],
"parameters": [
@@ -138129,7 +138329,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 502,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
}
],
"type": {
@@ -138152,7 +138352,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 502,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
}
]
}
@@ -138177,7 +138377,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
],
"signatures": [
@@ -138192,7 +138392,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
],
"parameters": [
@@ -138222,7 +138422,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 505,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
}
],
"type": {
@@ -138244,7 +138444,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 506,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
}
],
"type": {
@@ -138277,7 +138477,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
],
"type": {
@@ -138297,7 +138497,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
]
}
@@ -138341,7 +138541,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
}
],
"typeParameters": [
@@ -138364,7 +138564,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
}
],
"indexSignatures": [
@@ -138379,7 +138579,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
}
],
"parameters": [
@@ -138443,7 +138643,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 511,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
}
],
"type": {
@@ -138466,7 +138666,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 511,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
}
]
}
@@ -138491,7 +138691,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
],
"signatures": [
@@ -138506,7 +138706,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
],
"parameters": [
@@ -138536,7 +138736,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 514,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
}
],
"type": {
@@ -138558,7 +138758,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 515,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
}
],
"type": {
@@ -138591,7 +138791,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
],
"type": {
@@ -138611,7 +138811,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
]
}
@@ -138655,7 +138855,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
}
],
"typeParameters": [
@@ -138678,7 +138878,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
}
],
"indexSignatures": [
@@ -138693,7 +138893,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
}
],
"parameters": [
@@ -138757,7 +138957,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 520,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
}
],
"type": {
@@ -138780,7 +138980,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 520,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
}
]
}
@@ -138805,7 +139005,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 521,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
}
],
"signatures": [
@@ -138820,7 +139020,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 521,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
}
],
"parameters": [
@@ -138850,7 +139050,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 523,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L523"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L523"
}
],
"type": {
@@ -138872,7 +139072,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 524,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
}
],
"type": {
@@ -138905,7 +139105,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 522,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
}
],
"type": {
@@ -138925,7 +139125,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 521,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
}
]
}
@@ -138969,7 +139169,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
}
],
"typeParameters": [
@@ -138992,7 +139192,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
}
],
"indexSignatures": [
@@ -139007,7 +139207,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
}
],
"parameters": [
@@ -139081,7 +139281,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 530,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
}
],
"signatures": [
@@ -139096,7 +139296,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 530,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
}
],
"parameters": [
@@ -139143,7 +139343,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"signatures": [
@@ -139166,7 +139366,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"typeParameters": [
@@ -139189,7 +139389,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"indexSignatures": [
@@ -139204,7 +139404,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"parameters": [
@@ -139269,7 +139469,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 618,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
}
],
"signatures": [
@@ -139292,7 +139492,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 618,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
}
],
"parameters": [
@@ -139338,7 +139538,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 621,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L621"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L621"
}
],
"type": {
@@ -139367,7 +139567,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 622,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L622"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L622"
}
],
"type": {
@@ -139394,7 +139594,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 620,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L620"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L620"
}
],
"type": {
@@ -139427,7 +139627,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 619,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L619"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L619"
}
],
"indexSignatures": [
@@ -139442,7 +139642,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 623,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L623"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L623"
}
],
"parameters": [
@@ -139494,7 +139694,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 625,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
}
],
"indexSignatures": [
@@ -139509,7 +139709,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 625,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
}
],
"parameters": [
@@ -139567,7 +139767,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"signatures": [
@@ -139590,7 +139790,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"parameters": [
@@ -139615,7 +139815,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"signatures": [
@@ -139630,7 +139830,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"parameters": [
@@ -139709,7 +139909,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 746,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
}
],
"signatures": [
@@ -139732,7 +139932,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 746,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
}
],
"type": {
@@ -139753,7 +139953,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 389,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
}
],
"signatures": [
@@ -139784,7 +139984,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 389,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
}
],
"parameters": [
@@ -139807,7 +140007,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 390,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
}
],
"indexSignatures": [
@@ -139822,7 +140022,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 390,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
}
],
"parameters": [
@@ -139866,7 +140066,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 391,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
}
],
"indexSignatures": [
@@ -139881,7 +140081,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 391,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
}
],
"parameters": [
@@ -139939,7 +140139,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 707,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
}
],
"signatures": [
@@ -139970,7 +140170,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 707,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
}
],
"parameters": [
@@ -140029,7 +140229,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"signatures": [
@@ -140052,7 +140252,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"parameters": [
@@ -140075,7 +140275,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"indexSignatures": [
@@ -140090,7 +140290,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"parameters": [
@@ -140148,7 +140348,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"signatures": [
@@ -140171,7 +140371,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"parameters": [
@@ -140194,7 +140394,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"indexSignatures": [
@@ -140209,7 +140409,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"parameters": [
@@ -140262,7 +140462,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 164,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
}
]
},
@@ -140284,7 +140484,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L179"
}
],
"signatures": [
@@ -140318,7 +140518,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L179"
}
],
"parameters": [
@@ -140472,7 +140672,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"type": {
@@ -140495,7 +140695,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"signatures": [
@@ -140510,7 +140710,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"type": {
@@ -140556,7 +140756,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L103"
}
],
"type": {
@@ -140585,7 +140785,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L104"
}
],
"type": {
@@ -140614,7 +140814,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L106"
}
],
"type": {
@@ -140640,7 +140840,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 126,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L126"
}
],
"type": {
@@ -140671,7 +140871,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 124,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L124"
}
],
"type": {
@@ -140695,7 +140895,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 123,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L123"
}
],
"type": {
@@ -140719,7 +140919,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 107,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L107"
}
],
"type": {
@@ -140739,7 +140939,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"type": {
@@ -140982,7 +141182,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"type": {
@@ -140998,7 +141198,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"indexSignatures": [
@@ -141013,7 +141213,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"parameters": [
@@ -141050,7 +141250,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"type": {
@@ -141066,7 +141266,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"signatures": [
@@ -141081,7 +141281,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"parameters": [
@@ -141136,7 +141336,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L114"
}
],
"type": {
@@ -141156,7 +141356,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L115"
}
],
"type": {
@@ -141191,7 +141391,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 108,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L108"
}
],
"type": {
@@ -141211,7 +141411,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L121"
}
],
"type": {
@@ -141238,7 +141438,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L122"
}
],
"type": {
@@ -141264,7 +141464,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"type": {
@@ -141280,7 +141480,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"indexSignatures": [
@@ -141295,7 +141495,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"parameters": [
@@ -141332,7 +141532,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"type": {
@@ -141361,7 +141561,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L125"
}
],
"type": {
@@ -141385,7 +141585,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 119,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L119"
}
],
"type": {
@@ -141420,7 +141620,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L118"
}
],
"type": {
@@ -141440,7 +141640,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L127"
}
],
"type": {
@@ -141468,7 +141668,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L128"
}
],
"type": {
@@ -141494,7 +141694,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 129,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L129"
}
],
"type": {
@@ -141517,7 +141717,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 131,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L131"
}
],
"type": {
@@ -141544,7 +141744,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 132,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L132"
}
],
"type": {
@@ -141571,7 +141771,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 133,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L133"
}
],
"type": {
@@ -141598,7 +141798,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 130,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L130"
}
],
"type": {
@@ -141626,7 +141826,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 129,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L129"
}
]
}
@@ -141644,7 +141844,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L112"
}
],
"type": {
@@ -141664,7 +141864,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L113"
}
],
"type": {
@@ -141695,7 +141895,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L120"
}
],
"type": {
@@ -141717,7 +141917,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L142"
}
],
"type": {
@@ -141738,7 +141938,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L144"
}
],
"type": {
@@ -141764,7 +141964,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L143"
}
],
"type": {
@@ -141783,7 +141983,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L381"
}
],
"signatures": [
@@ -141824,7 +142024,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L381"
}
],
"parameters": [
@@ -141875,7 +142075,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L198"
}
],
"signatures": [
@@ -141898,7 +142098,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L198"
}
],
"type": {
@@ -141919,7 +142119,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 340,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L340"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L340"
}
],
"signatures": [
@@ -141942,7 +142142,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 340,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L340"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L340"
}
],
"type": {
@@ -141968,7 +142168,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L264"
}
],
"signatures": [
@@ -141991,7 +142191,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L264"
}
],
"parameters": [
@@ -142056,7 +142256,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L254"
}
],
"signatures": [
@@ -142090,7 +142290,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L254"
}
],
"type": {
@@ -142111,7 +142311,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L517"
}
],
"signatures": [
@@ -142134,7 +142334,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L517"
}
],
"type": {
@@ -142155,7 +142355,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 300,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L300"
}
],
"signatures": [
@@ -142178,7 +142378,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 300,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L300"
}
],
"type": {
@@ -142205,7 +142405,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L356"
}
],
"signatures": [
@@ -142236,7 +142436,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L356"
}
],
"type": {
@@ -142257,7 +142457,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 363,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L363"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L363"
}
],
"signatures": [
@@ -142288,7 +142488,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 363,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L363"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L363"
}
],
"type": {
@@ -142309,7 +142509,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L370"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L370"
}
],
"signatures": [
@@ -142340,7 +142540,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L370"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L370"
}
],
"type": {
@@ -142361,7 +142561,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L333"
}
],
"signatures": [
@@ -142392,7 +142592,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L333"
}
],
"parameters": [
@@ -142450,7 +142650,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"signatures": [
@@ -142473,7 +142673,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"parameters": [
@@ -142496,7 +142696,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"signatures": [
@@ -142511,7 +142711,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"parameters": [
@@ -142573,7 +142773,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 400,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L400"
}
],
"signatures": [
@@ -142596,7 +142796,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 400,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L400"
}
],
"parameters": [
@@ -142632,7 +142832,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 321,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L321"
}
],
"signatures": [
@@ -142655,7 +142855,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 321,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L321"
}
],
"type": {
@@ -142692,7 +142892,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 308,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L308"
}
],
"signatures": [
@@ -142715,7 +142915,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 308,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L308"
}
],
"parameters": [
@@ -142773,7 +142973,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 456,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L456"
}
],
"signatures": [
@@ -142796,7 +142996,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 456,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L456"
}
],
"type": {
@@ -142828,7 +143028,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 435,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L435"
}
],
"signatures": [
@@ -142886,7 +143086,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 435,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L435"
}
],
"parameters": [
@@ -142963,7 +143163,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 102,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L102"
}
]
},
@@ -142985,7 +143185,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"signatures": [
@@ -143019,7 +143219,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"parameters": [
@@ -143101,7 +143301,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
],
"type": {
@@ -143124,7 +143324,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L65"
}
],
"type": {
@@ -143148,7 +143348,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L66"
}
],
"type": {
@@ -143172,7 +143372,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -143188,7 +143388,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"signatures": [
@@ -143203,7 +143403,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -143227,7 +143427,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
]
}
@@ -143255,7 +143455,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 90,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L90"
}
],
"type": {
@@ -143277,7 +143477,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L63"
}
],
"type": {
@@ -143297,7 +143497,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L62"
}
],
"type": {
@@ -143326,7 +143526,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L61"
}
],
"type": {
@@ -143354,7 +143554,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L60"
}
],
"type": {
@@ -143381,7 +143581,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 59,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L59"
}
]
},
@@ -143414,7 +143614,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 167,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
}
],
"signatures": [
@@ -143448,7 +143648,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 167,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
}
],
"parameters": [
@@ -143526,7 +143726,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 147,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
}
],
"signatures": [
@@ -143560,7 +143760,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 147,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
}
],
"type": {
@@ -143674,7 +143874,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 182,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
}
],
"signatures": [
@@ -143708,7 +143908,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 182,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
}
],
"type": {
@@ -143730,7 +143930,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
}
]
},
@@ -143754,7 +143954,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
}
],
"type": {
@@ -143775,7 +143975,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
}
],
"type": {
@@ -143796,7 +143996,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 5,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
}
],
"type": {
@@ -143817,7 +144017,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 4,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
}
],
"type": {
@@ -143838,7 +144038,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 2,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
}
],
"type": {
@@ -143859,7 +144059,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"type": {
@@ -143875,7 +144075,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"signatures": [
@@ -143890,7 +144090,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"parameters": [
@@ -143933,7 +144133,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
}
],
"type": {
@@ -143952,7 +144152,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"type": {
@@ -143975,7 +144175,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"signatures": [
@@ -143990,7 +144190,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"parameters": [
@@ -144044,7 +144244,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"type": {
@@ -144067,7 +144267,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"signatures": [
@@ -144082,7 +144282,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"parameters": [
@@ -144136,7 +144336,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"type": {
@@ -144159,7 +144359,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"signatures": [
@@ -144174,7 +144374,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"parameters": [
@@ -144228,7 +144428,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"type": {
@@ -144251,7 +144451,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"signatures": [
@@ -144266,7 +144466,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"parameters": [
@@ -144322,7 +144522,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 3,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
}
],
"type": {
@@ -144343,7 +144543,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 8,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
}
],
"type": {
@@ -144364,7 +144564,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
}
],
"type": {
@@ -144385,7 +144585,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 7,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
}
],
"type": {
@@ -144404,7 +144604,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"signatures": [
@@ -144427,7 +144627,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"parameters": [
@@ -144477,7 +144677,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"signatures": [
@@ -144500,7 +144700,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"parameters": [
@@ -144549,7 +144749,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"signatures": [
@@ -144572,7 +144772,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"parameters": [
@@ -144622,7 +144822,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"signatures": [
@@ -144645,7 +144845,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"parameters": [
@@ -144729,7 +144929,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 1,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
}
]
},
@@ -144767,7 +144967,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"signatures": [
@@ -144782,7 +144982,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L63"
}
],
"parameters": [
@@ -144858,7 +145058,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"indexSignatures": [
@@ -144873,7 +145073,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L65"
}
],
"parameters": [
@@ -144907,7 +145107,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
],
"type": {
@@ -144930,7 +145130,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
],
"type": {
@@ -144963,7 +145163,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -144988,7 +145188,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -145009,7 +145209,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -145035,7 +145235,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -145055,7 +145255,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
]
}
@@ -145082,7 +145282,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -145107,7 +145307,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -145128,7 +145328,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -145148,7 +145348,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
]
}
@@ -145175,7 +145375,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
}
],
"type": {
@@ -145195,7 +145395,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
]
}
@@ -145213,7 +145413,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
]
}
@@ -145230,7 +145430,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 125,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
}
],
"type": {
@@ -145262,7 +145462,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
],
"type": {
@@ -145287,7 +145487,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"type": {
@@ -145303,7 +145503,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"signatures": [
@@ -145355,7 +145555,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L82"
}
],
"type": {
@@ -145381,7 +145581,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 81,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L81"
}
],
"type": {
@@ -145407,7 +145607,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L89"
}
],
"type": {
@@ -145433,7 +145633,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"type": {
@@ -145449,7 +145649,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"indexSignatures": [
@@ -145464,7 +145664,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"parameters": [
@@ -145502,7 +145702,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"type": {
@@ -145518,7 +145718,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"signatures": [
@@ -145581,7 +145781,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L77"
}
],
"type": {
@@ -145602,7 +145802,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 87,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L87"
}
],
"type": {
@@ -145628,7 +145828,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L80"
}
],
"type": {
@@ -145654,7 +145854,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L88"
}
],
"type": {
@@ -145680,7 +145880,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"type": {
@@ -145696,7 +145896,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"indexSignatures": [
@@ -145711,7 +145911,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"parameters": [
@@ -145749,7 +145949,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L83"
}
],
"type": {
@@ -145775,7 +145975,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L76"
}
],
"type": {
@@ -145796,7 +145996,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L75"
}
],
"type": {
@@ -145819,7 +146019,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L79"
}
],
"type": {
@@ -145840,7 +146040,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L90"
}
],
"type": {
@@ -145861,7 +146061,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L91"
}
],
"type": {
@@ -145884,7 +146084,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
]
}
@@ -145901,7 +146101,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
],
"type": {
@@ -145924,7 +146124,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L35"
}
],
"type": {
@@ -145945,7 +146145,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L38"
}
],
"type": {
@@ -145964,7 +146164,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L36"
}
],
"type": {
@@ -145983,7 +146183,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L37"
}
],
"type": {
@@ -146002,7 +146202,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L34"
}
],
"type": {
@@ -146022,7 +146222,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
]
}
@@ -146039,7 +146239,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
],
"typeParameters": [
@@ -146094,7 +146294,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
}
],
"type": {
@@ -146126,7 +146326,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
}
],
"type": {
@@ -146153,7 +146353,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
}
],
"type": {
@@ -146182,7 +146382,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
}
],
"type": {
@@ -146202,7 +146402,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
]
}
@@ -146219,7 +146419,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"typeParameters": [
@@ -146242,7 +146442,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"indexSignatures": [
@@ -146257,7 +146457,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"parameters": [
@@ -146345,7 +146545,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"typeParameters": [
@@ -146368,7 +146568,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"indexSignatures": [
@@ -146383,7 +146583,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"parameters": [
@@ -146441,7 +146641,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 96,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
}
],
"type": {
@@ -146471,7 +146671,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
],
"type": {
@@ -146487,7 +146687,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
]
}
@@ -146504,7 +146704,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 98,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
}
],
"type": {
@@ -146538,7 +146738,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 95,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
}
]
}
@@ -146557,7 +146757,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"typeParameters": [
@@ -146580,7 +146780,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"indexSignatures": [
@@ -146595,7 +146795,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"parameters": [
@@ -146653,7 +146853,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 82,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
}
],
"type": {
@@ -146683,7 +146883,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 83,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
}
],
"type": {
@@ -146705,7 +146905,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
],
"type": {
@@ -146721,7 +146921,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
]
}
@@ -146739,7 +146939,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 81,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
}
]
}
@@ -146758,7 +146958,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"typeParameters": [
@@ -146781,7 +146981,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"indexSignatures": [
@@ -146796,7 +146996,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"parameters": [
@@ -146854,7 +147054,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 89,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
}
],
"type": {
@@ -146884,7 +147084,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 90,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
}
],
"type": {
@@ -146906,7 +147106,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 91,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
}
],
"type": {
@@ -146940,7 +147140,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 88,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
}
]
}
@@ -146959,7 +147159,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"typeParameters": [
@@ -146982,7 +147182,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"indexSignatures": [
@@ -146997,7 +147197,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"parameters": [
@@ -147043,7 +147243,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L20"
}
],
"type": {
@@ -147079,7 +147279,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L18"
}
],
"type": {
@@ -147109,7 +147309,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L19"
}
],
"type": {
@@ -147128,7 +147328,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L21"
}
],
"type": {
@@ -147165,7 +147365,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
]
}
@@ -147182,7 +147382,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"typeParameters": [
@@ -147205,7 +147405,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"indexSignatures": [
@@ -147220,7 +147420,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"parameters": [
@@ -147266,7 +147466,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L27"
}
],
"type": {
@@ -147302,7 +147502,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L25"
}
],
"type": {
@@ -147332,7 +147532,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L26"
}
],
"type": {
@@ -147351,7 +147551,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L28"
}
],
"type": {
@@ -147388,7 +147588,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 77,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
]
}
@@ -147405,7 +147605,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"typeParameters": [
@@ -147428,7 +147628,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -147443,7 +147643,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"parameters": [
@@ -147480,7 +147680,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
]
}
@@ -147500,7 +147700,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 75,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -147515,7 +147715,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L14"
}
],
"parameters": [
@@ -147568,7 +147768,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 41,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L41"
}
],
"type": {
@@ -147602,7 +147802,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 148,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
}
],
"type": {
@@ -150423,7 +150623,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L133"
}
],
"type": {
@@ -150450,7 +150650,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L139"
}
],
"type": {
@@ -150477,7 +150677,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L135"
}
],
"type": {
@@ -150504,7 +150704,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L141"
}
],
"type": {
@@ -150531,7 +150731,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L143"
}
],
"type": {
@@ -150558,7 +150758,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L137"
}
],
"type": {
@@ -150578,7 +150778,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 131,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L131"
}
]
},
@@ -150608,7 +150808,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L48"
}
],
"signatures": [
@@ -150623,7 +150823,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L48"
}
],
"parameters": [
@@ -150705,7 +150905,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 45,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L45"
}
],
"type": {
@@ -150729,7 +150929,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 46,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L46"
}
],
"type": {
@@ -150753,7 +150953,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"signatures": [
@@ -150768,7 +150968,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"type": {
@@ -150791,7 +150991,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L63"
}
],
"type": {
@@ -150811,7 +151011,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L62"
}
],
"type": {
@@ -150831,7 +151031,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L64"
}
],
"type": {
@@ -150851,7 +151051,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L65"
}
],
"type": {
@@ -150872,7 +151072,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 61,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L61"
}
]
}
@@ -150900,7 +151100,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 44,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L44"
}
],
"extendedTypes": [
@@ -150937,7 +151137,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"signatures": [
@@ -150980,7 +151180,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"parameters": [
@@ -151014,7 +151214,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"indexSignatures": [
@@ -151029,7 +151229,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 28,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"parameters": [
@@ -151322,7 +151522,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L79"
}
],
"getSignature": {
@@ -151365,7 +151565,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L79"
}
],
"type": {
@@ -151388,7 +151588,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"getSignature": {
@@ -151431,7 +151631,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"type": {
@@ -151455,7 +151655,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"signatures": [
@@ -151518,7 +151718,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"parameters": [
@@ -151577,7 +151777,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 172,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
}
],
"type": {
@@ -151618,7 +151818,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 171,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
}
],
"type": {
@@ -151658,7 +151858,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
}
],
"type": {
@@ -151699,7 +151899,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 173,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
}
],
"type": {
@@ -151721,7 +151921,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 169,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
}
]
}
@@ -151759,7 +151959,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
}
],
"type": {
@@ -151795,7 +151995,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
}
],
"type": {
@@ -151815,7 +152015,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 178,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
}
]
}
@@ -151840,7 +152040,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 183,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
}
],
"type": {
@@ -151859,7 +152059,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 184,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
}
],
"type": {
@@ -151881,7 +152081,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 182,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
}
]
}
@@ -151918,7 +152118,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"signatures": [
@@ -151989,7 +152189,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"parameters": [
@@ -152043,7 +152243,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -152066,7 +152266,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -152086,7 +152286,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
]
}
@@ -152103,7 +152303,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 339,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
}
],
"type": {
@@ -152123,7 +152323,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 337,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
}
]
}
@@ -152148,7 +152348,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
}
],
"type": {
@@ -152167,7 +152367,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 343,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
}
],
"type": {
@@ -152189,7 +152389,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 341,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
}
]
}
@@ -152226,7 +152426,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"signatures": [
@@ -152289,7 +152489,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"parameters": [
@@ -152343,7 +152543,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -152366,7 +152566,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -152386,7 +152586,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
]
}
@@ -152403,7 +152603,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 299,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
}
],
"type": {
@@ -152423,7 +152623,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 297,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
]
}
@@ -152448,7 +152648,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 302,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
}
],
"type": {
@@ -152467,7 +152667,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 303,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
}
],
"type": {
@@ -152489,7 +152689,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 301,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
}
]
}
@@ -152524,7 +152724,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"signatures": [
@@ -152567,7 +152767,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"parameters": [
@@ -152614,7 +152814,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"signatures": [
@@ -152677,7 +152877,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"parameters": [
@@ -152731,7 +152931,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 117,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
}
],
"type": {
@@ -152752,7 +152952,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 118,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
}
],
"type": {
@@ -152772,7 +152972,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
}
]
}
@@ -152797,7 +152997,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 121,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
}
],
"type": {
@@ -152816,7 +153016,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 122,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
}
],
"type": {
@@ -152838,7 +153038,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 120,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
}
]
}
@@ -152875,7 +153075,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"signatures": [
@@ -152940,7 +153140,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"parameters": [
@@ -153030,7 +153230,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 66,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
}
],
"type": {
@@ -153054,7 +153254,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 67,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
}
],
"type": {
@@ -153074,7 +153274,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
}
]
}
@@ -153099,7 +153299,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 70,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
}
],
"type": {
@@ -153118,7 +153318,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 71,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
}
],
"type": {
@@ -153140,7 +153340,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 69,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
}
]
}
@@ -153178,7 +153378,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -153214,7 +153414,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -153288,7 +153488,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -153324,7 +153524,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -153357,7 +153557,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"signatures": [
@@ -153420,7 +153620,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"parameters": [
@@ -153479,7 +153679,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 244,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
}
],
"type": {
@@ -153520,7 +153720,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 243,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
}
],
"type": {
@@ -153560,7 +153760,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 242,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
}
],
"type": {
@@ -153580,7 +153780,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 241,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
}
]
}
@@ -153617,7 +153817,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -153640,7 +153840,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -153660,7 +153860,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
]
}
@@ -153677,7 +153877,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 249,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
}
],
"type": {
@@ -153697,7 +153897,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 247,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
}
]
}
@@ -153722,7 +153922,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 252,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
}
],
"type": {
@@ -153741,7 +153941,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
}
],
"type": {
@@ -153763,7 +153963,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 251,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
}
]
}
@@ -153825,7 +154025,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L11"
}
],
"extendedTypes": [
@@ -153863,7 +154063,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L17"
}
],
"signatures": [
@@ -153878,7 +154078,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L17"
}
],
"parameters": [
@@ -153966,7 +154166,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -153987,7 +154187,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -154011,7 +154211,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L11"
}
],
"extendedTypes": [
@@ -154069,7 +154269,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L77"
}
],
"signatures": [
@@ -154084,7 +154284,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L77"
}
],
"parameters": [
@@ -154155,7 +154355,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L75"
}
],
"type": {
@@ -154177,7 +154377,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -154204,7 +154404,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -154233,7 +154433,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L74"
}
],
"extendedTypes": [
@@ -154284,7 +154484,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L112"
}
],
"signatures": [
@@ -154299,7 +154499,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L112"
}
],
"parameters": [
@@ -154369,7 +154569,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 45,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L45"
}
],
"type": {
@@ -154395,7 +154595,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 46,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L46"
}
],
"type": {
@@ -154421,7 +154621,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"signatures": [
@@ -154438,7 +154638,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"type": {
@@ -154461,7 +154661,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L63"
}
],
"type": {
@@ -154481,7 +154681,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L62"
}
],
"type": {
@@ -154501,7 +154701,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L64"
}
],
"type": {
@@ -154521,7 +154721,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L65"
}
],
"type": {
@@ -154542,7 +154742,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 61,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L61"
}
]
}
@@ -154580,7 +154780,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L111"
}
],
"extendedTypes": [
@@ -154624,7 +154824,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L93"
}
],
"signatures": [
@@ -154639,7 +154839,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L93"
}
],
"parameters": [
@@ -154688,7 +154888,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -154715,7 +154915,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -154744,7 +154944,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 92,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L92"
}
],
"extendedTypes": [
@@ -154788,7 +154988,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L122"
}
],
"signatures": [
@@ -154803,7 +155003,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L122"
}
],
"parameters": [
@@ -154862,7 +155062,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L75"
}
],
"type": {
@@ -154889,7 +155089,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -154916,7 +155116,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -154945,7 +155145,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 121,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L121"
}
],
"extendedTypes": [
@@ -154991,7 +155191,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L42"
}
],
"type": {
@@ -155018,7 +155218,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L40"
}
],
"type": {
@@ -155045,7 +155245,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L36"
}
],
"type": {
@@ -155072,7 +155272,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L38"
}
],
"type": {
@@ -155099,7 +155299,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -155119,7 +155319,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 34,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L34"
}
]
},
@@ -155143,7 +155343,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L16"
}
],
"type": {
@@ -155165,7 +155365,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L17"
}
],
"type": {
@@ -155186,7 +155386,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L15"
}
],
"type": {
@@ -155205,7 +155405,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L11"
}
],
"type": {
@@ -155224,7 +155424,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L13"
}
],
"type": {
@@ -155243,7 +155443,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L14"
}
],
"type": {
@@ -155262,7 +155462,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L19"
}
],
"type": {
@@ -155283,7 +155483,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L12"
}
],
"type": {
@@ -155304,7 +155504,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -155324,7 +155524,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 10,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L10"
}
]
},
@@ -155362,7 +155562,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 468,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L468"
}
],
"type": {
@@ -155389,7 +155589,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 469,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L469"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L469"
}
],
"type": {
@@ -155419,7 +155619,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 467,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L467"
}
],
"type": {
@@ -155439,7 +155639,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 466,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L466"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L466"
}
]
},
@@ -155463,7 +155663,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L112"
}
],
"type": {
@@ -155483,7 +155683,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 111,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L111"
}
]
},
@@ -155523,7 +155723,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 281,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L281"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L281"
}
],
"type": {
@@ -155552,7 +155752,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 282,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L282"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L282"
}
],
"type": {
@@ -155572,7 +155772,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 280,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L280"
}
]
},
@@ -155610,7 +155810,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 565,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L565"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L565"
}
],
"type": {
@@ -155637,7 +155837,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 566,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L566"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L566"
}
],
"type": {
@@ -155659,7 +155859,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 564,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L564"
}
]
},
@@ -155691,7 +155891,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L215"
}
],
"type": {
@@ -155745,7 +155945,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 204,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L204"
}
],
"type": {
@@ -155770,7 +155970,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 200,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L200"
}
]
},
@@ -155792,7 +155992,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L49"
}
],
"type": {
@@ -155811,7 +156011,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L57"
}
],
"type": {
@@ -155832,7 +156032,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L53"
}
],
"type": {
@@ -155851,7 +156051,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L51"
}
],
"type": {
@@ -155879,7 +156079,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L55"
}
],
"type": {
@@ -155898,7 +156098,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L56"
}
],
"type": {
@@ -155932,7 +156132,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L48"
}
],
"type": {
@@ -155951,7 +156151,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L50"
}
],
"type": {
@@ -155970,7 +156170,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L52"
}
],
"type": {
@@ -155990,7 +156190,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 47,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L47"
}
]
},
@@ -156012,7 +156212,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L64"
}
],
"type": {
@@ -156033,7 +156233,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L70"
}
],
"type": {
@@ -156054,7 +156254,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L71"
}
],
"type": {
@@ -156073,7 +156273,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L66"
}
],
"type": {
@@ -156094,7 +156294,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -156113,7 +156313,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L61"
}
],
"type": {
@@ -156141,7 +156341,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 68,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L68"
}
],
"type": {
@@ -156162,7 +156362,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L73"
}
],
"type": {
@@ -156183,7 +156383,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L74"
}
],
"type": {
@@ -156217,7 +156417,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L63"
}
],
"type": {
@@ -156238,7 +156438,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L69"
}
],
"type": {
@@ -156257,7 +156457,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L65"
}
],
"type": {
@@ -156276,7 +156476,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L62"
}
],
"type": {
@@ -156298,7 +156498,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 60,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L60"
}
]
},
@@ -156338,7 +156538,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L86"
}
],
"type": {
@@ -156415,7 +156615,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L90"
}
],
"type": {
@@ -156444,7 +156644,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -156473,7 +156673,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 108,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L108"
}
],
"type": {
@@ -156517,7 +156717,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L103"
}
],
"type": {
@@ -156561,7 +156761,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -156581,7 +156781,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 82,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L82"
}
]
},
@@ -156619,7 +156819,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L434"
}
],
"type": {
@@ -156646,7 +156846,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 435,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L435"
}
],
"type": {
@@ -156678,7 +156878,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 436,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L436"
}
],
"type": {
@@ -156707,7 +156907,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 437,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L437"
}
],
"type": {
@@ -156734,7 +156934,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 433,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L433"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L433"
}
],
"type": {
@@ -156754,7 +156954,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 432,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L432"
}
]
},
@@ -156792,7 +156992,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 445,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L445"
}
],
"type": {
@@ -156817,7 +157017,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 444,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L444"
}
]
},
@@ -156841,7 +157041,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L23"
}
],
"type": {
@@ -156862,7 +157062,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L24"
}
],
"type": {
@@ -156883,7 +157083,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L27"
}
],
"type": {
@@ -156904,7 +157104,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L25"
}
],
"type": {
@@ -156942,7 +157142,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L26"
}
],
"type": {
@@ -156971,7 +157171,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L22"
}
]
},
@@ -157011,7 +157211,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L410"
}
],
"type": {
@@ -157040,7 +157240,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L411"
}
],
"type": {
@@ -157069,7 +157269,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 409,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L409"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L409"
}
],
"type": {
@@ -157096,7 +157296,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 408,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L408"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L408"
}
],
"type": {
@@ -157116,7 +157316,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 407,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L407"
}
]
},
@@ -157154,7 +157354,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 420,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L420"
}
],
"type": {
@@ -157179,7 +157379,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 420,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L420"
}
],
"type": {
@@ -157199,7 +157399,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 420,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L420"
}
]
}
@@ -157227,7 +157427,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L421"
}
],
"type": {
@@ -157247,7 +157447,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 419,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L419"
}
]
},
@@ -157287,7 +157487,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 386,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L386"
}
],
"type": {
@@ -157316,7 +157516,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 387,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L387"
}
],
"type": {
@@ -157345,7 +157545,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 385,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L385"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L385"
}
],
"type": {
@@ -157365,7 +157565,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 384,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L384"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L384"
}
]
},
@@ -157405,7 +157605,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L397"
}
],
"type": {
@@ -157432,7 +157632,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 396,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L396"
}
],
"type": {
@@ -157457,7 +157657,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 396,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L396"
}
],
"type": {
@@ -157477,7 +157677,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 396,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L396"
}
]
}
@@ -157496,7 +157696,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 395,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L395"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L395"
}
]
},
@@ -157534,7 +157734,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 486,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L486"
}
],
"type": {
@@ -157563,7 +157763,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 487,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L487"
}
],
"type": {
@@ -157592,7 +157792,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 488,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L488"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L488"
}
],
"type": {
@@ -157621,7 +157821,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 489,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L489"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L489"
}
],
"type": {
@@ -157650,7 +157850,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 490,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L490"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L490"
}
],
"type": {
@@ -157679,7 +157879,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L491"
}
],
"type": {
@@ -157708,7 +157908,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L492"
}
],
"type": {
@@ -157735,7 +157935,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -157755,7 +157955,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 484,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L484"
}
]
},
@@ -157795,7 +157995,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 502,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L502"
}
],
"type": {
@@ -157822,7 +158022,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L501"
}
],
"type": {
@@ -157847,7 +158047,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 500,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L500"
}
]
},
@@ -157869,7 +158069,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 220,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L220"
}
],
"type": {
@@ -157889,7 +158089,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 219,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L219"
}
]
},
@@ -157929,7 +158129,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 303,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L303"
}
],
"type": {
@@ -157952,7 +158152,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 302,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L302"
}
]
},
@@ -157990,7 +158190,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L456"
}
],
"type": {
@@ -158017,7 +158217,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L455"
}
],
"type": {
@@ -158044,7 +158244,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L457"
}
],
"type": {
@@ -158069,7 +158269,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 454,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L454"
}
]
},
@@ -158109,7 +158309,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 526,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L526"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L526"
}
],
"type": {
@@ -158138,7 +158338,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 523,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L523"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L523"
}
],
"type": {
@@ -158165,7 +158365,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 524,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L524"
}
],
"type": {
@@ -158196,7 +158396,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 527,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L527"
}
],
"type": {
@@ -158225,7 +158425,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 528,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L528"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L528"
}
],
"type": {
@@ -158254,7 +158454,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 525,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L525"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L525"
}
],
"type": {
@@ -158281,7 +158481,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L522"
}
],
"type": {
@@ -158301,7 +158501,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 521,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L521"
}
]
},
@@ -158341,7 +158541,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L538"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L538"
}
],
"type": {
@@ -158370,7 +158570,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L537"
}
],
"type": {
@@ -158395,7 +158595,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 536,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L536"
}
]
},
@@ -158438,7 +158638,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L120"
}
],
"type": {
@@ -158467,7 +158667,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L125"
}
],
"type": {
@@ -158496,7 +158696,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L135"
}
],
"type": {
@@ -158525,7 +158725,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L130"
}
],
"type": {
@@ -158547,7 +158747,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 115,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L115"
}
]
},
@@ -158569,7 +158769,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L183"
}
],
"type": {
@@ -158588,7 +158788,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L179"
}
],
"type": {
@@ -158607,7 +158807,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L180"
}
],
"type": {
@@ -158635,7 +158835,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 188,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L188"
}
],
"type": {
@@ -158654,7 +158854,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L184"
}
],
"type": {
@@ -158688,7 +158888,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -158707,7 +158907,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L182"
}
],
"type": {
@@ -158727,7 +158927,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 178,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L178"
}
]
},
@@ -158759,7 +158959,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 158,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L158"
}
],
"type": {
@@ -158799,7 +158999,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L148"
}
],
"type": {
@@ -158828,7 +159028,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 153,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L153"
}
],
"type": {
@@ -158868,7 +159068,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L175"
}
],
"type": {
@@ -158926,7 +159126,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L169"
}
],
"type": {
@@ -158946,7 +159146,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 143,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L143"
}
]
},
@@ -158968,7 +159168,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L195"
}
],
"type": {
@@ -158992,7 +159192,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 194,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L194"
}
],
"type": {
@@ -159013,7 +159213,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L197"
}
],
"type": {
@@ -159032,7 +159232,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 196,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L196"
}
],
"type": {
@@ -159057,7 +159257,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 193,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L193"
}
]
},
@@ -159081,7 +159281,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -159102,7 +159302,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L79"
}
],
"type": {
@@ -159122,7 +159322,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 77,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L77"
}
]
},
@@ -159144,7 +159344,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L139"
}
],
"type": {
@@ -159178,7 +159378,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L140"
}
],
"type": {
@@ -159207,7 +159407,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 138,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L138"
}
]
},
@@ -159231,7 +159431,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L8"
}
],
"type": {
@@ -159251,7 +159451,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 7,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L7"
}
]
},
@@ -159289,7 +159489,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 555,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L555"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L555"
}
],
"type": {
@@ -159320,7 +159520,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 556,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L556"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L556"
}
],
"type": {
@@ -159340,7 +159540,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 554,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L554"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L554"
}
],
"typeParameters": [
@@ -159381,7 +159581,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L251"
}
],
"type": {
@@ -159410,7 +159610,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L231"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L231"
}
],
"type": {
@@ -159439,7 +159639,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 244,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L244"
}
],
"type": {
@@ -159468,7 +159668,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L238"
}
],
"type": {
@@ -159510,7 +159710,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 227,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L227"
}
],
"type": {
@@ -159530,7 +159730,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 223,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L223"
}
]
},
@@ -159570,7 +159770,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L293"
}
],
"type": {
@@ -159599,7 +159799,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 294,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L294"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L294"
}
],
"type": {
@@ -159628,7 +159828,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L292"
}
],
"type": {
@@ -159648,7 +159848,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 291,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L291"
}
]
},
@@ -159686,7 +159886,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 343,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L343"
}
],
"type": {
@@ -159709,7 +159909,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 342,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L342"
}
]
},
@@ -159749,7 +159949,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 546,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L546"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L546"
}
],
"type": {
@@ -159774,7 +159974,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 545,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L545"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L545"
}
]
},
@@ -159814,7 +160014,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 334,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L334"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L334"
}
],
"type": {
@@ -159841,7 +160041,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L330"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L330"
}
],
"type": {
@@ -159868,7 +160068,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L331"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L331"
}
],
"type": {
@@ -159895,7 +160095,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 332,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L332"
}
],
"type": {
@@ -159924,7 +160124,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L328"
}
],
"type": {
@@ -159953,7 +160153,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L333"
}
],
"type": {
@@ -159982,7 +160182,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L329"
}
],
"type": {
@@ -160002,7 +160202,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 327,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L327"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L327"
}
]
},
@@ -160042,7 +160242,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 373,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L373"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L373"
}
],
"type": {
@@ -160073,7 +160273,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 375,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L375"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L375"
}
],
"type": {
@@ -160100,7 +160300,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 372,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L372"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L372"
}
],
"type": {
@@ -160129,7 +160329,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 374,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L374"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L374"
}
],
"type": {
@@ -160151,7 +160351,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 371,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L371"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L371"
}
]
},
@@ -160189,7 +160389,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L360"
}
],
"type": {
@@ -160218,7 +160418,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L359"
}
],
"type": {
@@ -160247,7 +160447,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L361"
}
],
"type": {
@@ -160269,7 +160469,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 358,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L358"
}
]
},
@@ -160292,7 +160492,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 573,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L573"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L573"
}
],
"typeParameters": [
@@ -160350,7 +160550,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 8,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L8"
}
],
"type": {
@@ -160378,7 +160578,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 258,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L258"
}
],
"typeParameters": [
@@ -160481,7 +160681,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 315,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L315"
}
],
"type": {
@@ -160513,7 +160713,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 262,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L262"
}
],
"typeParameters": [
@@ -160548,7 +160748,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 264,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L264"
}
],
"type": {
@@ -160570,7 +160770,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 265,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L265"
}
],
"type": {
@@ -160590,7 +160790,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 263,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L263"
}
]
}
@@ -160615,7 +160815,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 268,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L268"
}
],
"type": {
@@ -160634,7 +160834,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 269,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L269"
}
],
"type": {
@@ -160656,7 +160856,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 267,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L267"
}
]
}
@@ -160683,7 +160883,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 5,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L5"
}
],
"type": {
@@ -160711,7 +160911,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 191,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L191"
}
],
"type": {
@@ -160768,7 +160968,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 310,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L310"
}
],
"type": {
@@ -160795,7 +160995,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 509,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L509"
}
],
"type": {
@@ -160837,7 +161037,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 350,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L350"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L350"
}
],
"type": {
@@ -160871,7 +161071,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L36"
}
],
"signatures": [
@@ -160905,7 +161105,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L36"
}
],
"parameters": [
@@ -160954,7 +161154,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 103,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L103"
}
],
"signatures": [
@@ -160988,7 +161188,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 103,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L103"
}
],
"parameters": [
@@ -161037,7 +161237,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 15,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L15"
}
],
"target": 891
@@ -161053,7 +161253,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 3,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L3"
}
],
"target": 48
@@ -161069,7 +161269,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L7"
}
],
"target": 544
@@ -161085,7 +161285,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 11,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L11"
}
],
"target": 531
@@ -161101,7 +161301,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L8"
}
],
"target": 599
@@ -161117,7 +161317,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L9"
}
],
"target": 667
@@ -161158,7 +161358,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L1"
}
]
},
@@ -161187,7 +161387,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"signatures": [
@@ -161202,7 +161402,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"parameters": [
@@ -161225,7 +161425,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -161240,7 +161440,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"type": {
@@ -161303,7 +161503,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
}
],
"type": {
@@ -161328,7 +161528,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -161343,7 +161543,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"type": {
@@ -161367,7 +161567,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"signatures": [
@@ -161401,7 +161601,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"typeParameters": [
@@ -161454,7 +161654,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"signatures": [
@@ -161469,7 +161669,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"parameters": [
@@ -161587,7 +161787,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -161621,7 +161821,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"parameters": [
@@ -161661,7 +161861,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -161676,7 +161876,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"type": {
@@ -161743,7 +161943,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"signatures": [
@@ -161777,7 +161977,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"typeParameters": [
@@ -161854,7 +162054,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"signatures": [
@@ -161869,7 +162069,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"parameters": [
@@ -161971,7 +162171,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"signatures": [
@@ -161986,7 +162186,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"parameters": [
@@ -162103,7 +162303,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 5,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
}
],
"implementedTypes": [
@@ -162149,7 +162349,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
}
]
},
@@ -162186,7 +162386,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"signatures": [
@@ -162230,7 +162430,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"parameters": [
@@ -162280,7 +162480,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"indexSignatures": [
@@ -162295,7 +162495,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"parameters": [
@@ -162582,7 +162782,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 79,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
}
],
"signatures": [
@@ -162644,7 +162844,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 79,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
}
],
"parameters": [
@@ -162698,7 +162898,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 81,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81"
}
],
"type": {
@@ -162719,7 +162919,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 82,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82"
}
],
"type": {
@@ -162739,7 +162939,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 80,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
}
]
}
@@ -162764,7 +162964,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 85,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85"
}
],
"type": {
@@ -162783,7 +162983,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 86,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86"
}
],
"type": {
@@ -162805,7 +163005,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L84"
}
]
}
@@ -162830,7 +163030,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
}
],
"signatures": [
@@ -162892,7 +163092,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
}
],
"parameters": [
@@ -162946,7 +163146,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 205,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
}
],
"type": {
@@ -162969,7 +163169,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 205,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
}
],
"type": {
@@ -162989,7 +163189,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 205,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
}
]
}
@@ -163006,7 +163206,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L206"
}
],
"type": {
@@ -163026,7 +163226,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L204"
}
]
}
@@ -163051,7 +163251,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 209,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L209"
}
],
"type": {
@@ -163070,7 +163270,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 210,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L210"
}
],
"type": {
@@ -163092,7 +163292,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 208,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L208"
}
]
}
@@ -163117,7 +163317,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 346,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
}
],
"signatures": [
@@ -163291,7 +163491,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 346,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
}
],
"parameters": [
@@ -163335,7 +163535,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
}
],
"signatures": [
@@ -163397,7 +163597,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
}
],
"parameters": [
@@ -163447,7 +163647,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 141,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L141"
}
],
"type": {
@@ -163476,7 +163676,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 142,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L142"
}
],
"type": {
@@ -163505,7 +163705,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 145,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L145"
}
],
"type": {
@@ -163534,7 +163734,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 143,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L143"
}
],
"type": {
@@ -163576,7 +163776,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 144,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L144"
}
],
"type": {
@@ -163605,7 +163805,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 140,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
}
]
}
@@ -163642,7 +163842,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 148,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L148"
}
],
"type": {
@@ -163666,7 +163866,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 149,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
],
"type": {
@@ -163686,7 +163886,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L147"
}
]
}
@@ -163711,7 +163911,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 152,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152"
}
],
"type": {
@@ -163730,7 +163930,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 153,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153"
}
],
"type": {
@@ -163752,7 +163952,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 151,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151"
}
]
}
@@ -163780,7 +163980,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -163816,7 +164016,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -163890,7 +164090,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -163926,7 +164126,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -163972,7 +164172,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 21,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21"
}
],
"extendedTypes": [
@@ -164006,7 +164206,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13"
}
],
"type": {
@@ -164076,7 +164276,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1"
}
]
},
@@ -164105,7 +164305,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
}
],
"signatures": [
@@ -164120,7 +164320,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
}
],
"parameters": [
@@ -164154,7 +164354,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
}
],
"indexSignatures": [
@@ -164169,7 +164369,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 11,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
}
],
"parameters": [
@@ -164463,7 +164663,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"signatures": [
@@ -164524,7 +164724,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"parameters": [
@@ -164583,7 +164783,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 172,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
}
],
"type": {
@@ -164624,7 +164824,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 171,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
}
],
"type": {
@@ -164664,7 +164864,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
}
],
"type": {
@@ -164705,7 +164905,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 173,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
}
],
"type": {
@@ -164727,7 +164927,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 169,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
}
]
}
@@ -164765,7 +164965,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
}
],
"type": {
@@ -164801,7 +165001,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
}
],
"type": {
@@ -164821,7 +165021,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 178,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
}
]
}
@@ -164846,7 +165046,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 183,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
}
],
"type": {
@@ -164865,7 +165065,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 184,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
}
],
"type": {
@@ -164887,7 +165087,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 182,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
}
]
}
@@ -164912,7 +165112,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"signatures": [
@@ -164981,7 +165181,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"parameters": [
@@ -165035,7 +165235,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -165058,7 +165258,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -165078,7 +165278,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
]
}
@@ -165095,7 +165295,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 339,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
}
],
"type": {
@@ -165115,7 +165315,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 337,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
}
]
}
@@ -165140,7 +165340,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
}
],
"type": {
@@ -165159,7 +165359,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 343,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
}
],
"type": {
@@ -165181,7 +165381,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 341,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
}
]
}
@@ -165206,7 +165406,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"signatures": [
@@ -165267,7 +165467,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"parameters": [
@@ -165321,7 +165521,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -165344,7 +165544,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -165364,7 +165564,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
]
}
@@ -165381,7 +165581,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 299,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
}
],
"type": {
@@ -165401,7 +165601,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 297,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
]
}
@@ -165426,7 +165626,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 302,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
}
],
"type": {
@@ -165445,7 +165645,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 303,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
}
],
"type": {
@@ -165467,7 +165667,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 301,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
}
]
}
@@ -165492,7 +165692,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"signatures": [
@@ -165553,7 +165753,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"parameters": [
@@ -165607,7 +165807,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 117,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
}
],
"type": {
@@ -165628,7 +165828,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 118,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
}
],
"type": {
@@ -165648,7 +165848,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
}
]
}
@@ -165673,7 +165873,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 121,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
}
],
"type": {
@@ -165692,7 +165892,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 122,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
}
],
"type": {
@@ -165714,7 +165914,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 120,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
}
]
}
@@ -165739,7 +165939,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"signatures": [
@@ -165802,7 +166002,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"parameters": [
@@ -165892,7 +166092,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 66,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
}
],
"type": {
@@ -165916,7 +166116,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 67,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
}
],
"type": {
@@ -165936,7 +166136,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
}
]
}
@@ -165961,7 +166161,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 70,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
}
],
"type": {
@@ -165980,7 +166180,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 71,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
}
],
"type": {
@@ -166002,7 +166202,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 69,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
}
]
}
@@ -166030,7 +166230,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -166066,7 +166266,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -166140,7 +166340,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -166176,7 +166376,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -166207,7 +166407,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"signatures": [
@@ -166268,7 +166468,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"parameters": [
@@ -166327,7 +166527,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 244,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
}
],
"type": {
@@ -166368,7 +166568,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 243,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
}
],
"type": {
@@ -166408,7 +166608,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 242,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
}
],
"type": {
@@ -166428,7 +166628,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 241,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
}
]
}
@@ -166465,7 +166665,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -166488,7 +166688,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -166508,7 +166708,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
]
}
@@ -166525,7 +166725,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 249,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
}
],
"type": {
@@ -166545,7 +166745,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 247,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
}
]
}
@@ -166570,7 +166770,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 252,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
}
],
"type": {
@@ -166589,7 +166789,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
}
],
"type": {
@@ -166611,7 +166811,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 251,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
}
]
}
@@ -166651,7 +166851,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
}
],
"extendedTypes": [
@@ -166693,7 +166893,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
}
]
},
@@ -166722,7 +166922,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
}
],
"signatures": [
@@ -166737,7 +166937,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
}
],
"parameters": [
@@ -166771,7 +166971,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
}
],
"indexSignatures": [
@@ -166786,7 +166986,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 51,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
}
],
"parameters": [
@@ -167078,7 +167278,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 500,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
}
],
"signatures": [
@@ -167139,7 +167339,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 500,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
}
],
"parameters": [
@@ -167251,7 +167451,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 506,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
}
],
"type": {
@@ -167274,7 +167474,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 506,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
}
],
"type": {
@@ -167294,7 +167494,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 506,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
}
]
}
@@ -167311,7 +167511,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 507,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L507"
}
],
"type": {
@@ -167331,7 +167531,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 505,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L505"
}
]
}
@@ -167356,7 +167556,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 510,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L510"
}
],
"type": {
@@ -167375,7 +167575,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 511,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L511"
}
],
"type": {
@@ -167397,7 +167597,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 509,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L509"
}
]
}
@@ -167422,7 +167622,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"signatures": [
@@ -167483,7 +167683,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"parameters": [
@@ -167550,7 +167750,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 307,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
}
],
"type": {
@@ -167570,7 +167770,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 307,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
}
]
}
@@ -167607,7 +167807,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -167630,7 +167830,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -167649,7 +167849,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -167668,7 +167868,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -167688,7 +167888,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
]
}
@@ -167705,7 +167905,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 311,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L311"
}
],
"type": {
@@ -167725,7 +167925,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 309,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L309"
}
]
}
@@ -167750,7 +167950,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 314,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L314"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L314"
}
],
"type": {
@@ -167769,7 +167969,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 315,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
}
],
"type": {
@@ -167791,7 +167991,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 313,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L313"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L313"
}
]
}
@@ -167816,7 +168016,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 581,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
}
],
"signatures": [
@@ -167897,7 +168097,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 581,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
}
],
"parameters": [
@@ -167993,7 +168193,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 584,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
}
],
"type": {
@@ -168031,7 +168231,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 584,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
}
],
"type": {
@@ -168053,7 +168253,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 584,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
}
]
}
@@ -168090,7 +168290,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 587,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
}
],
"type": {
@@ -168113,7 +168313,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 587,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
}
],
"type": {
@@ -168133,7 +168333,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 587,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
}
]
}
@@ -168150,7 +168350,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 588,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L588"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L588"
}
],
"type": {
@@ -168170,7 +168370,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 586,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L586"
}
]
}
@@ -168195,7 +168395,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 591,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L591"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L591"
}
],
"type": {
@@ -168214,7 +168414,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 592,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L592"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L592"
}
],
"type": {
@@ -168236,7 +168436,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 590,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L590"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L590"
}
]
}
@@ -168261,7 +168461,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 650,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
}
],
"signatures": [
@@ -168322,7 +168522,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 650,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
}
],
"parameters": [
@@ -168419,7 +168619,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 653,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
}
],
"type": {
@@ -168448,7 +168648,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 653,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
}
]
}
@@ -168485,7 +168685,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -168510,7 +168710,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -168538,7 +168738,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -168566,7 +168766,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -168586,7 +168786,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
]
}
@@ -168604,7 +168804,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 657,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L657"
}
],
"type": {
@@ -168624,7 +168824,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 655,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L655"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L655"
}
]
}
@@ -168649,7 +168849,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 660,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L660"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L660"
}
],
"type": {
@@ -168668,7 +168868,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 661,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L661"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L661"
}
],
"type": {
@@ -168690,7 +168890,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 659,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L659"
}
]
}
@@ -168715,7 +168915,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
],
"signatures": [
@@ -168814,7 +169014,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
],
"typeParameters": [
@@ -168846,7 +169046,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
],
"type": {
@@ -168868,7 +169068,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
]
}
@@ -168964,7 +169164,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 816,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
}
],
"signatures": [
@@ -169017,7 +169217,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 816,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
}
],
"parameters": [
@@ -169079,7 +169279,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 818,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L818"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L818"
}
],
"type": {
@@ -169098,7 +169298,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 819,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L819"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L819"
}
],
"type": {
@@ -169118,7 +169318,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 817,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L817"
}
]
}
@@ -169143,7 +169343,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 822,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L822"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L822"
}
],
"type": {
@@ -169162,7 +169362,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 823,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L823"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L823"
}
],
"type": {
@@ -169184,7 +169384,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 821,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L821"
}
]
}
@@ -169209,7 +169409,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 900,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
}
],
"signatures": [
@@ -169290,7 +169490,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 900,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
}
],
"parameters": [
@@ -169359,7 +169559,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 902,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
}
],
"type": {
@@ -169397,7 +169597,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 902,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
}
],
"type": {
@@ -169419,7 +169619,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 902,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
}
]
}
@@ -169446,7 +169646,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
],
"type": {
@@ -169469,7 +169669,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
],
"type": {
@@ -169489,7 +169689,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
]
}
@@ -169507,7 +169707,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
]
}
@@ -169526,7 +169726,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 780,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
}
],
"signatures": [
@@ -169579,7 +169779,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 780,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
}
],
"parameters": [
@@ -169641,7 +169841,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 782,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L782"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L782"
}
],
"type": {
@@ -169670,7 +169870,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 783,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L783"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L783"
}
],
"type": {
@@ -169690,7 +169890,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 781,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L781"
}
]
}
@@ -169715,7 +169915,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 786,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L786"
}
],
"type": {
@@ -169734,7 +169934,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 787,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L787"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L787"
}
],
"type": {
@@ -169756,7 +169956,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 785,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L785"
}
]
}
@@ -169781,7 +169981,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1098,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
}
],
"signatures": [
@@ -169852,7 +170052,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1098,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
}
],
"parameters": [
@@ -169954,7 +170154,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1104,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1104"
}
],
"type": {
@@ -169978,7 +170178,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1105,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1105"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1105"
}
],
"type": {
@@ -169998,7 +170198,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1103,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1103"
}
]
}
@@ -170023,7 +170223,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1108,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1108"
}
],
"type": {
@@ -170042,7 +170242,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1109,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1109"
}
],
"type": {
@@ -170064,7 +170264,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1107,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1107"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1107"
}
]
}
@@ -170089,7 +170289,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1131,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
}
],
"signatures": [
@@ -170124,7 +170324,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1131,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
}
],
"parameters": [
@@ -170197,7 +170397,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1136,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1136"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1136"
}
],
"type": {
@@ -170218,7 +170418,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1137,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1137"
}
],
"type": {
@@ -170238,7 +170438,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1135,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1135"
}
]
}
@@ -170263,7 +170463,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1140,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1140"
}
],
"type": {
@@ -170282,7 +170482,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1141,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1141"
}
],
"type": {
@@ -170304,7 +170504,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1139,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1139"
}
]
}
@@ -170329,7 +170529,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 444,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
}
],
"signatures": [
@@ -170390,7 +170590,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 444,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
}
],
"parameters": [
@@ -170502,7 +170702,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 450,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
}
],
"type": {
@@ -170525,7 +170725,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 450,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
}
],
"type": {
@@ -170545,7 +170745,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 450,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
}
]
}
@@ -170562,7 +170762,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 451,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L451"
}
],
"type": {
@@ -170582,7 +170782,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 449,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L449"
}
]
}
@@ -170607,7 +170807,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 454,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L454"
}
],
"type": {
@@ -170626,7 +170826,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 455,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L455"
}
],
"type": {
@@ -170648,7 +170848,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 453,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L453"
}
]
}
@@ -170673,7 +170873,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 956,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
}
],
"signatures": [
@@ -170734,7 +170934,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 956,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
}
],
"parameters": [
@@ -170799,7 +170999,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 958,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L958"
}
],
"type": {
@@ -170823,7 +171023,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 959,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L959"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L959"
}
],
"type": {
@@ -170843,7 +171043,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 957,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L957"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L957"
}
]
}
@@ -170868,7 +171068,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 962,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L962"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L962"
}
],
"type": {
@@ -170887,7 +171087,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 963,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L963"
}
],
"type": {
@@ -170909,7 +171109,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 961,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L961"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L961"
}
]
}
@@ -170937,7 +171137,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -170973,7 +171173,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -171047,7 +171247,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -171083,7 +171283,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -171114,7 +171314,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
}
],
"signatures": [
@@ -171129,7 +171329,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
}
],
"parameters": [
@@ -171163,7 +171363,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 390,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
}
],
"signatures": [
@@ -171234,7 +171434,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 390,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
}
],
"parameters": [
@@ -171470,7 +171670,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -171493,7 +171693,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -171512,7 +171712,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -171531,7 +171731,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -171551,7 +171751,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
]
}
@@ -171568,7 +171768,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 407,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L407"
}
],
"type": {
@@ -171588,7 +171788,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 405,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L405"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L405"
}
]
}
@@ -171613,7 +171813,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 410,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L410"
}
],
"type": {
@@ -171632,7 +171832,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L411"
}
],
"type": {
@@ -171654,7 +171854,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 409,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L409"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L409"
}
]
}
@@ -171679,7 +171879,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 188,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
}
],
"signatures": [
@@ -171750,7 +171950,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 188,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
}
],
"parameters": [
@@ -171859,7 +172059,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -171882,7 +172082,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -171901,7 +172101,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -171920,7 +172120,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -171940,7 +172140,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
]
}
@@ -171957,7 +172157,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 195,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L195"
}
],
"type": {
@@ -171977,7 +172177,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 193,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L193"
}
]
}
@@ -172002,7 +172202,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
}
],
"type": {
@@ -172021,7 +172221,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L199"
}
],
"type": {
@@ -172043,7 +172243,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L197"
}
]
}
@@ -172068,7 +172268,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
}
],
"signatures": [
@@ -172137,7 +172337,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
}
],
"parameters": [
@@ -172293,7 +172493,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -172312,7 +172512,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -172334,7 +172534,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
]
}
@@ -172359,7 +172559,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -172382,7 +172582,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 271,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
}
],
"type": {
@@ -172402,7 +172602,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
}
],
"type": {
@@ -172423,7 +172623,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 271,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
}
]
}
@@ -172440,7 +172640,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -172460,7 +172660,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
]
}
@@ -172505,7 +172705,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 46,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L46"
}
],
"extendedTypes": [
@@ -172540,7 +172740,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
}
]
},
@@ -172582,7 +172782,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
}
],
"signatures": [
@@ -172626,7 +172826,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
}
],
"parameters": [
@@ -172724,7 +172924,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
}
],
"signatures": [
@@ -172777,7 +172977,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
}
],
"parameters": [
@@ -172848,7 +173048,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
}
],
"signatures": [
@@ -172901,7 +173101,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
}
],
"parameters": [
@@ -172972,7 +173172,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
}
],
"signatures": [
@@ -173025,7 +173225,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
}
],
"parameters": [
@@ -173069,7 +173269,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
],
"signatures": [
@@ -173122,7 +173322,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
],
"parameters": [
@@ -173177,7 +173377,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
],
"type": {
@@ -173199,7 +173399,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
]
}
@@ -173236,7 +173436,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
}
],
"signatures": [
@@ -173289,7 +173489,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
}
],
"parameters": [
@@ -173368,7 +173568,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -173405,7 +173605,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -173479,7 +173679,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -173516,7 +173716,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -173562,7 +173762,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 80,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80"
}
],
"extendedTypes": [
@@ -173601,7 +173801,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
}
],
"signatures": [
@@ -173645,7 +173845,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
}
],
"parameters": [
@@ -173679,7 +173879,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 258,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
}
],
"indexSignatures": [
@@ -173694,7 +173894,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 258,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
}
],
"parameters": [
@@ -173982,7 +174182,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 293,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
}
],
"signatures": [
@@ -174035,7 +174235,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 293,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
}
],
"parameters": [
@@ -174123,7 +174323,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 369,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
}
],
"signatures": [
@@ -174176,7 +174376,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 369,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
}
],
"parameters": [
@@ -174247,7 +174447,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 346,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
}
],
"signatures": [
@@ -174300,7 +174500,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 346,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
}
],
"parameters": [
@@ -174355,7 +174555,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 58,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
}
],
"type": {
@@ -174377,7 +174577,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 58,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
}
]
}
@@ -174414,7 +174614,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 404,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
}
],
"signatures": [
@@ -174467,7 +174667,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 404,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
}
],
"parameters": [
@@ -174511,7 +174711,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 319,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
}
],
"signatures": [
@@ -174564,7 +174764,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 319,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
}
],
"parameters": [
@@ -174658,7 +174858,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -174695,7 +174895,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -174769,7 +174969,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -174806,7 +175006,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -174852,7 +175052,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 240,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L240"
}
],
"extendedTypes": [
@@ -174891,7 +175091,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 442,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
}
],
"signatures": [
@@ -174935,7 +175135,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 442,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
}
],
"parameters": [
@@ -174969,7 +175169,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 444,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
}
],
"indexSignatures": [
@@ -174984,7 +175184,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 444,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
}
],
"parameters": [
@@ -175283,7 +175483,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 607,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
}
],
"signatures": [
@@ -175336,7 +175536,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 607,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
}
],
"parameters": [
@@ -175433,7 +175633,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 511,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
}
],
"signatures": [
@@ -175486,7 +175686,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 511,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
}
],
"parameters": [
@@ -175585,7 +175785,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 541,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
}
],
"signatures": [
@@ -175638,7 +175838,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 541,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
}
],
"parameters": [
@@ -175738,7 +175938,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 481,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
}
],
"signatures": [
@@ -175791,7 +175991,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 481,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
}
],
"parameters": [
@@ -175888,7 +176088,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 576,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
}
],
"signatures": [
@@ -175941,7 +176141,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 576,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
}
],
"parameters": [
@@ -176043,7 +176243,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -176080,7 +176280,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -176154,7 +176354,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -176191,7 +176391,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -176237,7 +176437,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 424,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L424"
}
],
"extendedTypes": [
@@ -176287,7 +176487,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35"
}
],
"type": {
@@ -176525,7 +176725,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
}
],
"type": {
@@ -176541,7 +176741,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
}
],
"indexSignatures": [
@@ -176556,7 +176756,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 30,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
}
],
"parameters": [
@@ -176593,7 +176793,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 26,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26"
}
]
}
@@ -176613,7 +176813,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1"
}
]
},
@@ -176642,7 +176842,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"signatures": [
@@ -176657,7 +176857,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"parameters": [
@@ -176680,7 +176880,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"signatures": [
@@ -176695,7 +176895,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"type": {
@@ -176756,7 +176956,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -176790,7 +176990,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"typeParameters": [
@@ -176873,7 +177073,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"signatures": [
@@ -176888,7 +177088,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"parameters": [
@@ -176996,7 +177196,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -177011,7 +177211,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"parameters": [
@@ -177124,7 +177324,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 4,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
}
],
"implementedTypes": [
@@ -177170,7 +177370,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
}
]
},
@@ -177185,7 +177385,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorBucketApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1"
}
]
},
@@ -177200,7 +177400,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorDataApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorDataApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorDataApi.ts#L1"
}
]
},
@@ -177242,7 +177442,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25"
}
],
"type": {
@@ -177265,7 +177465,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26"
}
],
"type": {
@@ -177288,7 +177488,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27"
}
],
"type": {
@@ -177313,7 +177513,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24"
}
],
"type": {
@@ -177338,7 +177538,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28"
}
],
"type": {
@@ -177363,7 +177563,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23"
}
],
"type": {
@@ -177383,7 +177583,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22"
}
]
}
@@ -177399,7 +177599,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1"
}
]
}
@@ -182145,7 +182345,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L88"
}
],
"type": {
@@ -182164,7 +182364,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L89"
}
],
"type": {
@@ -182183,7 +182383,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L90"
}
],
"type": {
@@ -182202,7 +182402,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L91"
}
],
"type": {
@@ -182221,7 +182421,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L92"
}
],
"type": {
@@ -182240,7 +182440,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L93"
}
],
"type": {
@@ -182259,7 +182459,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L94"
}
],
"type": {
@@ -182278,7 +182478,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 95,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L95"
}
],
"type": {
@@ -182297,7 +182497,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L96"
}
],
"type": {
@@ -182316,7 +182516,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 97,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L97"
}
],
"type": {
@@ -182335,7 +182535,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L98"
}
],
"type": {
@@ -182354,7 +182554,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 99,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L99"
}
],
"type": {
@@ -182373,7 +182573,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L100"
}
],
"type": {
@@ -182392,7 +182592,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L101"
}
],
"type": {
@@ -182411,7 +182611,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L102"
}
],
"type": {
@@ -182431,7 +182631,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L87"
}
]
},
@@ -182461,7 +182661,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"signatures": [
@@ -182495,7 +182695,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"parameters": [
@@ -182538,7 +182738,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 42,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L42"
}
],
"type": {
@@ -182767,7 +182967,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 41,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L41"
}
],
"type": {
@@ -182804,7 +183004,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 43,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L43"
}
],
"type": {
@@ -182827,7 +183027,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 40,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L40"
}
]
}
@@ -182857,7 +183057,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L19"
}
],
"type": {
@@ -183086,7 +183286,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L17"
}
],
"type": {
@@ -183122,7 +183322,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L18"
}
],
"type": {
@@ -183145,7 +183345,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L16"
}
],
"type": {
@@ -183164,7 +183364,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"signatures": [
@@ -183198,7 +183398,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"typeParameters": [
@@ -183297,7 +183497,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"signatures": [
@@ -183331,7 +183531,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"parameters": [
@@ -183382,7 +183582,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L15"
}
]
},
@@ -183423,7 +183623,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L32"
}
],
"signatures": [
@@ -183438,7 +183638,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L32"
}
],
"parameters": [
@@ -183509,7 +183709,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -183533,7 +183733,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L30"
}
],
"extendedTypes": [
@@ -183602,7 +183802,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L50"
}
],
"signatures": [
@@ -183617,7 +183817,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L50"
}
],
"parameters": [
@@ -183665,7 +183865,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -183694,7 +183894,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L49"
}
],
"extendedTypes": [
@@ -183743,7 +183943,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L82"
}
],
"signatures": [
@@ -183758,7 +183958,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L82"
}
],
"parameters": [
@@ -183806,7 +184006,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -183835,7 +184035,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L81"
}
],
"extendedTypes": [
@@ -183884,7 +184084,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L66"
}
],
"signatures": [
@@ -183899,7 +184099,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L66"
}
],
"parameters": [
@@ -183947,7 +184147,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -183976,7 +184176,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L65"
}
],
"extendedTypes": [
@@ -183999,7 +184199,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L105"
}
],
"type": {
@@ -184032,7 +184232,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L121"
}
],
"type": {
@@ -184141,7 +184341,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L109"
}
],
"type": {
@@ -184157,7 +184357,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L109"
}
],
"indexSignatures": [
@@ -184172,7 +184372,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L109"
}
],
"parameters": [
@@ -184218,7 +184418,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L113"
}
],
"type": {
@@ -184268,7 +184468,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L117"
}
],
"type": {
@@ -184299,7 +184499,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L132"
}
],
"type": {
@@ -184333,7 +184533,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L137"
}
],
"type": {
@@ -184353,7 +184553,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L105"
}
]
}
@@ -184370,7 +184570,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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 2c25d7e28d929..13f994bf0ea40 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": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L88"
}
],
"type": {
@@ -42,7 +42,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L89"
}
],
"type": {
@@ -61,7 +61,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L90"
}
],
"type": {
@@ -80,7 +80,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L91"
}
],
"type": {
@@ -99,7 +99,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L92"
}
],
"type": {
@@ -118,7 +118,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L93"
}
],
"type": {
@@ -137,7 +137,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L94"
}
],
"type": {
@@ -156,7 +156,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 95,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L95"
}
],
"type": {
@@ -175,7 +175,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L96"
}
],
"type": {
@@ -194,7 +194,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 97,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L97"
}
],
"type": {
@@ -213,7 +213,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L98"
}
],
"type": {
@@ -232,7 +232,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 99,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L99"
}
],
"type": {
@@ -251,7 +251,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L100"
}
],
"type": {
@@ -270,7 +270,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L101"
}
],
"type": {
@@ -289,7 +289,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L102"
}
],
"type": {
@@ -309,7 +309,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L87"
}
]
},
@@ -339,7 +339,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"signatures": [
@@ -373,7 +373,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"parameters": [
@@ -416,7 +416,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 42,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L42"
}
],
"type": {
@@ -645,7 +645,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 41,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L41"
}
],
"type": {
@@ -682,7 +682,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 43,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L43"
}
],
"type": {
@@ -705,7 +705,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 40,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L40"
}
]
}
@@ -735,7 +735,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L19"
}
],
"type": {
@@ -964,7 +964,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L17"
}
],
"type": {
@@ -1000,7 +1000,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L18"
}
],
"type": {
@@ -1023,7 +1023,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L16"
}
],
"type": {
@@ -1042,7 +1042,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"signatures": [
@@ -1076,7 +1076,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"typeParameters": [
@@ -1175,7 +1175,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"signatures": [
@@ -1209,7 +1209,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"parameters": [
@@ -1260,7 +1260,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L15"
}
]
},
@@ -1301,7 +1301,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L32"
}
],
"signatures": [
@@ -1316,7 +1316,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L32"
}
],
"parameters": [
@@ -1387,7 +1387,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1411,7 +1411,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L30"
}
],
"extendedTypes": [
@@ -1480,7 +1480,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L50"
}
],
"signatures": [
@@ -1495,7 +1495,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L50"
}
],
"parameters": [
@@ -1543,7 +1543,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1572,7 +1572,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L49"
}
],
"extendedTypes": [
@@ -1621,7 +1621,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L82"
}
],
"signatures": [
@@ -1636,7 +1636,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L82"
}
],
"parameters": [
@@ -1684,7 +1684,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1713,7 +1713,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L81"
}
],
"extendedTypes": [
@@ -1762,7 +1762,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L66"
}
],
"signatures": [
@@ -1777,7 +1777,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L66"
}
],
"parameters": [
@@ -1825,7 +1825,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1854,7 +1854,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L65"
}
],
"extendedTypes": [
@@ -1877,7 +1877,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L105"
}
],
"type": {
@@ -1910,7 +1910,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L121"
}
],
"type": {
@@ -2019,7 +2019,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L109"
}
],
"type": {
@@ -2035,7 +2035,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L109"
}
],
"indexSignatures": [
@@ -2050,7 +2050,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L109"
}
],
"parameters": [
@@ -2096,7 +2096,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L113"
}
],
"type": {
@@ -2146,7 +2146,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L117"
}
],
"type": {
@@ -2177,7 +2177,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L132"
}
],
"type": {
@@ -2211,7 +2211,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L137"
}
],
"type": {
@@ -2231,7 +2231,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L105"
}
]
}
@@ -2248,7 +2248,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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 2c25d7e28d929..13f994bf0ea40 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": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L88"
}
],
"type": {
@@ -42,7 +42,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L89"
}
],
"type": {
@@ -61,7 +61,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L90"
}
],
"type": {
@@ -80,7 +80,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L91"
}
],
"type": {
@@ -99,7 +99,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L92"
}
],
"type": {
@@ -118,7 +118,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L93"
}
],
"type": {
@@ -137,7 +137,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L94"
}
],
"type": {
@@ -156,7 +156,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 95,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L95"
}
],
"type": {
@@ -175,7 +175,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L96"
}
],
"type": {
@@ -194,7 +194,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 97,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L97"
}
],
"type": {
@@ -213,7 +213,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L98"
}
],
"type": {
@@ -232,7 +232,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 99,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L99"
}
],
"type": {
@@ -251,7 +251,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L100"
}
],
"type": {
@@ -270,7 +270,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L101"
}
],
"type": {
@@ -289,7 +289,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L102"
}
],
"type": {
@@ -309,7 +309,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L87"
}
]
},
@@ -339,7 +339,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"signatures": [
@@ -373,7 +373,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"parameters": [
@@ -416,7 +416,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 42,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L42"
}
],
"type": {
@@ -645,7 +645,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 41,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L41"
}
],
"type": {
@@ -682,7 +682,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 43,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L43"
}
],
"type": {
@@ -705,7 +705,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 40,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L40"
}
]
}
@@ -735,7 +735,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L19"
}
],
"type": {
@@ -964,7 +964,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L17"
}
],
"type": {
@@ -1000,7 +1000,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L18"
}
],
"type": {
@@ -1023,7 +1023,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L16"
}
],
"type": {
@@ -1042,7 +1042,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"signatures": [
@@ -1076,7 +1076,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"typeParameters": [
@@ -1175,7 +1175,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"signatures": [
@@ -1209,7 +1209,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"parameters": [
@@ -1260,7 +1260,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/FunctionsClient.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/FunctionsClient.ts#L15"
}
]
},
@@ -1301,7 +1301,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L32"
}
],
"signatures": [
@@ -1316,7 +1316,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L32"
}
],
"parameters": [
@@ -1387,7 +1387,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1411,7 +1411,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L30"
}
],
"extendedTypes": [
@@ -1480,7 +1480,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L50"
}
],
"signatures": [
@@ -1495,7 +1495,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L50"
}
],
"parameters": [
@@ -1543,7 +1543,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1572,7 +1572,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L49"
}
],
"extendedTypes": [
@@ -1621,7 +1621,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L82"
}
],
"signatures": [
@@ -1636,7 +1636,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L82"
}
],
"parameters": [
@@ -1684,7 +1684,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1713,7 +1713,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L81"
}
],
"extendedTypes": [
@@ -1762,7 +1762,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L66"
}
],
"signatures": [
@@ -1777,7 +1777,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L66"
}
],
"parameters": [
@@ -1825,7 +1825,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1854,7 +1854,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L65"
}
],
"extendedTypes": [
@@ -1877,7 +1877,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L105"
}
],
"type": {
@@ -1910,7 +1910,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L121"
}
],
"type": {
@@ -2019,7 +2019,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L109"
}
],
"type": {
@@ -2035,7 +2035,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L109"
}
],
"indexSignatures": [
@@ -2050,7 +2050,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L109"
}
],
"parameters": [
@@ -2096,7 +2096,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L113"
}
],
"type": {
@@ -2146,7 +2146,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L117"
}
],
"type": {
@@ -2177,7 +2177,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L132"
}
],
"type": {
@@ -2211,7 +2211,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L137"
}
],
"type": {
@@ -2231,7 +2231,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/functions-js/src/types.ts#L105"
}
]
}
@@ -2248,7 +2248,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/functions-js/src/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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 9885a8b687e9c..6b1c9b62d7b07 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json
@@ -6,7 +6,7 @@
"flags": {},
"children": [
{
- "id": 1538,
+ "id": 1539,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -32,7 +32,7 @@
},
"children": [
{
- "id": 1539,
+ "id": 1540,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -42,12 +42,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"signatures": [
{
- "id": 1540,
+ "id": 1541,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -57,12 +57,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"parameters": [
{
- "id": 1541,
+ "id": 1542,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -73,7 +73,7 @@
}
},
{
- "id": 1542,
+ "id": 1543,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -84,7 +84,7 @@
}
},
{
- "id": 1543,
+ "id": 1544,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -106,25 +106,25 @@
],
"type": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1530,
+ "target": 1531,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1529,
+ "target": 1530,
"name": "AuthError.constructor"
}
},
{
- "id": 1545,
+ "id": 1546,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -153,7 +153,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -182,7 +182,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1546,
+ "id": 1547,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -195,12 +195,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1534,
+ "target": 1535,
"name": "AuthError.code"
}
},
{
- "id": 1544,
+ "id": 1545,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -218,7 +218,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L51"
}
],
"type": {
@@ -227,7 +227,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1536,
+ "target": 1537,
"name": "AuthError.status"
}
}
@@ -235,11 +235,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1539]
+ "children": [1540]
},
{
"title": "Properties",
- "children": [1545, 1544]
+ "children": [1546, 1545]
}
],
"sources": [
@@ -247,20 +247,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L50"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1528,
+ "id": 1529,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -286,7 +286,7 @@
},
"children": [
{
- "id": 1529,
+ "id": 1530,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -296,12 +296,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"signatures": [
{
- "id": 1530,
+ "id": 1531,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -311,12 +311,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"parameters": [
{
- "id": 1531,
+ "id": 1532,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -327,7 +327,7 @@
}
},
{
- "id": 1532,
+ "id": 1533,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -340,7 +340,7 @@
}
},
{
- "id": 1533,
+ "id": 1534,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -355,7 +355,7 @@
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -373,7 +373,7 @@
}
},
{
- "id": 1534,
+ "id": 1535,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -400,7 +400,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -429,7 +429,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1535,
+ "id": 1536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -442,7 +442,7 @@
}
},
{
- "id": 1536,
+ "id": 1537,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -460,7 +460,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -481,11 +481,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1529]
+ "children": [1530]
},
{
"title": "Properties",
- "children": [1534, 1536]
+ "children": [1535, 1537]
}
],
"sources": [
@@ -493,7 +493,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L14"
}
],
"extendedTypes": [
@@ -510,23 +510,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError"
}
]
},
{
- "id": 1595,
+ "id": 1596,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -552,7 +552,7 @@
},
"children": [
{
- "id": 1596,
+ "id": 1597,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -562,12 +562,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"signatures": [
{
- "id": 1597,
+ "id": 1598,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -577,12 +577,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"parameters": [
{
- "id": 1598,
+ "id": 1599,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -593,7 +593,7 @@
}
},
{
- "id": 1599,
+ "id": 1600,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -608,14 +608,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1600,
+ "id": 1601,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1602,
+ "id": 1603,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -625,7 +625,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -634,7 +634,7 @@
}
},
{
- "id": 1601,
+ "id": 1602,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -644,7 +644,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -656,7 +656,7 @@
"groups": [
{
"title": "Properties",
- "children": [1602, 1601]
+ "children": [1603, 1602]
}
],
"sources": [
@@ -664,7 +664,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
]
}
@@ -676,25 +676,25 @@
],
"type": {
"type": "reference",
- "target": 1595,
+ "target": 1596,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1619,
+ "id": 1620,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -723,7 +723,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -752,7 +752,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1620,
+ "id": 1621,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -765,12 +765,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1603,
+ "id": 1604,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -780,7 +780,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -793,14 +793,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1604,
+ "id": 1605,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1606,
+ "id": 1607,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -810,7 +810,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -819,7 +819,7 @@
}
},
{
- "id": 1605,
+ "id": 1606,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -829,7 +829,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -841,7 +841,7 @@
"groups": [
{
"title": "Properties",
- "children": [1606, 1605]
+ "children": [1607, 1606]
}
],
"sources": [
@@ -849,7 +849,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -859,7 +859,7 @@
"defaultValue": "null"
},
{
- "id": 1617,
+ "id": 1618,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -871,7 +871,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -880,12 +880,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1618,
+ "id": 1619,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -905,7 +905,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -914,12 +914,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
},
{
- "id": 1607,
+ "id": 1608,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -929,12 +929,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"signatures": [
{
- "id": 1608,
+ "id": 1609,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -944,20 +944,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1609,
+ "id": 1610,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1613,
+ "id": 1614,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -967,7 +967,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 187,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L187"
}
],
"type": {
@@ -980,14 +980,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1614,
+ "id": 1615,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1616,
+ "id": 1617,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -997,7 +997,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -1006,7 +1006,7 @@
}
},
{
- "id": 1615,
+ "id": 1616,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1016,7 +1016,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -1028,7 +1028,7 @@
"groups": [
{
"title": "Properties",
- "children": [1616, 1615]
+ "children": [1617, 1616]
}
],
"sources": [
@@ -1036,7 +1036,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -1046,7 +1046,7 @@
"defaultValue": "..."
},
{
- "id": 1611,
+ "id": 1612,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -1056,7 +1056,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 185,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L185"
}
],
"type": {
@@ -1066,7 +1066,7 @@
"defaultValue": "..."
},
{
- "id": 1610,
+ "id": 1611,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1076,7 +1076,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 184,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L184"
}
],
"type": {
@@ -1086,7 +1086,7 @@
"defaultValue": "..."
},
{
- "id": 1612,
+ "id": 1613,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1096,7 +1096,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 186,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L186"
}
],
"type": {
@@ -1109,7 +1109,7 @@
"groups": [
{
"title": "Properties",
- "children": [1613, 1611, 1610, 1612]
+ "children": [1614, 1612, 1611, 1613]
}
],
"sources": [
@@ -1117,7 +1117,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 183,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L183"
}
]
}
@@ -1129,15 +1129,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1596]
+ "children": [1597]
},
{
"title": "Properties",
- "children": [1619, 1603, 1617, 1618]
+ "children": [1620, 1604, 1618, 1619]
},
{
"title": "Methods",
- "children": [1607]
+ "children": [1608]
}
],
"sources": [
@@ -1145,20 +1145,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 175,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L175"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1586,
+ "id": 1587,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -1184,7 +1184,7 @@
},
"children": [
{
- "id": 1587,
+ "id": 1588,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1194,12 +1194,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"signatures": [
{
- "id": 1588,
+ "id": 1589,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -1209,12 +1209,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"parameters": [
{
- "id": 1589,
+ "id": 1590,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1227,25 +1227,25 @@
],
"type": {
"type": "reference",
- "target": 1586,
+ "target": 1587,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1592,
+ "id": 1593,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1274,7 +1274,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1303,7 +1303,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1593,
+ "id": 1594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1316,12 +1316,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1590,
+ "id": 1591,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1333,7 +1333,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1342,12 +1342,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1591,
+ "id": 1592,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1367,7 +1367,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1376,7 +1376,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -1384,11 +1384,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1587]
+ "children": [1588]
},
{
"title": "Properties",
- "children": [1592, 1590, 1591]
+ "children": [1593, 1591, 1592]
}
],
"sources": [
@@ -1396,20 +1396,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 156,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L156"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1679,
+ "id": 1680,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -1435,7 +1435,7 @@
},
"children": [
{
- "id": 1680,
+ "id": 1681,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1445,12 +1445,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 321,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L321"
}
],
"signatures": [
{
- "id": 1681,
+ "id": 1682,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -1460,12 +1460,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 321,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L321"
}
],
"parameters": [
{
- "id": 1682,
+ "id": 1683,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1478,25 +1478,25 @@
],
"type": {
"type": "reference",
- "target": 1679,
+ "target": 1680,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1685,
+ "id": 1686,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1525,7 +1525,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1554,7 +1554,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1686,
+ "id": 1687,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1567,12 +1567,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1683,
+ "id": 1684,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1584,7 +1584,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1593,12 +1593,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1684,
+ "id": 1685,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1618,7 +1618,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1627,7 +1627,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -1635,11 +1635,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1680]
+ "children": [1681]
},
{
"title": "Properties",
- "children": [1685, 1683, 1684]
+ "children": [1686, 1684, 1685]
}
],
"sources": [
@@ -1647,20 +1647,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 320,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L320"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L320"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1578,
+ "id": 1579,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -1686,7 +1686,7 @@
},
"children": [
{
- "id": 1579,
+ "id": 1580,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1696,12 +1696,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"signatures": [
{
- "id": 1580,
+ "id": 1581,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -1711,30 +1711,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"type": {
"type": "reference",
- "target": 1578,
+ "target": 1579,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1583,
+ "id": 1584,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1763,7 +1763,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1792,7 +1792,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1584,
+ "id": 1585,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1805,12 +1805,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1581,
+ "id": 1582,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1822,7 +1822,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1831,12 +1831,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1582,
+ "id": 1583,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1856,7 +1856,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1865,7 +1865,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -1873,11 +1873,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1579]
+ "children": [1580]
},
{
"title": "Properties",
- "children": [1583, 1581, 1582]
+ "children": [1584, 1582, 1583]
}
],
"sources": [
@@ -1885,20 +1885,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 140,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L140"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1649,
+ "id": 1650,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "declaration",
"kind": 128,
@@ -1924,7 +1924,7 @@
},
"children": [
{
- "id": 1650,
+ "id": 1651,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1934,12 +1934,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L239"
}
],
"signatures": [
{
- "id": 1651,
+ "id": 1652,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "signature",
"kind": 16384,
@@ -1949,30 +1949,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L239"
}
],
"type": {
"type": "reference",
- "target": 1649,
+ "target": 1650,
"name": "AuthPKCECodeVerifierMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1654,
+ "id": 1655,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2001,7 +2001,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2030,7 +2030,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1655,
+ "id": 1656,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2043,12 +2043,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1652,
+ "id": 1653,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2060,7 +2060,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2069,12 +2069,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1653,
+ "id": 1654,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2094,7 +2094,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2103,7 +2103,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -2111,11 +2111,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1650]
+ "children": [1651]
},
{
"title": "Properties",
- "children": [1654, 1652, 1653]
+ "children": [1655, 1653, 1654]
}
],
"sources": [
@@ -2123,20 +2123,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 238,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L238"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1622,
+ "id": 1623,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -2162,7 +2162,7 @@
},
"children": [
{
- "id": 1623,
+ "id": 1624,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2172,12 +2172,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"signatures": [
{
- "id": 1624,
+ "id": 1625,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -2187,12 +2187,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"parameters": [
{
- "id": 1625,
+ "id": 1626,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2203,7 +2203,7 @@
}
},
{
- "id": 1626,
+ "id": 1627,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -2218,14 +2218,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1627,
+ "id": 1628,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1629,
+ "id": 1630,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2235,7 +2235,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -2244,7 +2244,7 @@
}
},
{
- "id": 1628,
+ "id": 1629,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2254,7 +2254,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -2266,7 +2266,7 @@
"groups": [
{
"title": "Properties",
- "children": [1629, 1628]
+ "children": [1630, 1629]
}
],
"sources": [
@@ -2274,7 +2274,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
]
}
@@ -2286,25 +2286,25 @@
],
"type": {
"type": "reference",
- "target": 1622,
+ "target": 1623,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1646,
+ "id": 1647,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2333,7 +2333,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2362,7 +2362,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1647,
+ "id": 1648,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2375,12 +2375,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1630,
+ "id": 1631,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -2390,7 +2390,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2403,14 +2403,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1631,
+ "id": 1632,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1633,
+ "id": 1634,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2420,7 +2420,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2429,7 +2429,7 @@
}
},
{
- "id": 1632,
+ "id": 1633,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2439,7 +2439,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2451,7 +2451,7 @@
"groups": [
{
"title": "Properties",
- "children": [1633, 1632]
+ "children": [1634, 1633]
}
],
"sources": [
@@ -2459,7 +2459,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -2469,7 +2469,7 @@
"defaultValue": "null"
},
{
- "id": 1644,
+ "id": 1645,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2481,7 +2481,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2490,12 +2490,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1645,
+ "id": 1646,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2515,7 +2515,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2524,12 +2524,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
},
{
- "id": 1634,
+ "id": 1635,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -2539,12 +2539,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"signatures": [
{
- "id": 1635,
+ "id": 1636,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -2554,20 +2554,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1636,
+ "id": 1637,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1640,
+ "id": 1641,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -2577,7 +2577,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 221,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L221"
}
],
"type": {
@@ -2590,14 +2590,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1641,
+ "id": 1642,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1643,
+ "id": 1644,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2607,7 +2607,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2616,7 +2616,7 @@
}
},
{
- "id": 1642,
+ "id": 1643,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2626,7 +2626,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2638,7 +2638,7 @@
"groups": [
{
"title": "Properties",
- "children": [1643, 1642]
+ "children": [1644, 1643]
}
],
"sources": [
@@ -2646,7 +2646,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -2656,7 +2656,7 @@
"defaultValue": "..."
},
{
- "id": 1638,
+ "id": 1639,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -2666,7 +2666,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 219,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L219"
}
],
"type": {
@@ -2676,7 +2676,7 @@
"defaultValue": "..."
},
{
- "id": 1637,
+ "id": 1638,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2686,7 +2686,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L218"
}
],
"type": {
@@ -2696,7 +2696,7 @@
"defaultValue": "..."
},
{
- "id": 1639,
+ "id": 1640,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2706,7 +2706,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 220,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L220"
}
],
"type": {
@@ -2719,7 +2719,7 @@
"groups": [
{
"title": "Properties",
- "children": [1640, 1638, 1637, 1639]
+ "children": [1641, 1639, 1638, 1640]
}
],
"sources": [
@@ -2727,7 +2727,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 217,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L217"
}
]
}
@@ -2739,15 +2739,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1623]
+ "children": [1624]
},
{
"title": "Properties",
- "children": [1646, 1630, 1644, 1645]
+ "children": [1647, 1631, 1645, 1646]
},
{
"title": "Methods",
- "children": [1634]
+ "children": [1635]
}
],
"sources": [
@@ -2755,20 +2755,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 208,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L208"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1657,
+ "id": 1658,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -2794,7 +2794,7 @@
},
"children": [
{
- "id": 1658,
+ "id": 1659,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2804,12 +2804,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L269"
}
],
"signatures": [
{
- "id": 1659,
+ "id": 1660,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -2819,12 +2819,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L269"
}
],
"parameters": [
{
- "id": 1660,
+ "id": 1661,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2835,7 +2835,7 @@
}
},
{
- "id": 1661,
+ "id": 1662,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -2848,25 +2848,25 @@
],
"type": {
"type": "reference",
- "target": 1657,
+ "target": 1658,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1664,
+ "id": 1665,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2895,7 +2895,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2924,7 +2924,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1665,
+ "id": 1666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2937,12 +2937,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1662,
+ "id": 1663,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2954,7 +2954,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2963,12 +2963,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1663,
+ "id": 1664,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2988,7 +2988,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2997,7 +2997,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -3005,11 +3005,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1658]
+ "children": [1659]
},
{
"title": "Properties",
- "children": [1664, 1662, 1663]
+ "children": [1665, 1663, 1664]
}
],
"sources": [
@@ -3017,20 +3017,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 268,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L268"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1570,
+ "id": 1571,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -3056,7 +3056,7 @@
},
"children": [
{
- "id": 1571,
+ "id": 1572,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3066,12 +3066,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"signatures": [
{
- "id": 1572,
+ "id": 1573,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -3081,30 +3081,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"type": {
"type": "reference",
- "target": 1570,
+ "target": 1571,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1575,
+ "id": 1576,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3133,7 +3133,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3162,7 +3162,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1576,
+ "id": 1577,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3175,12 +3175,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1573,
+ "id": 1574,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3192,7 +3192,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -3201,12 +3201,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1574,
+ "id": 1575,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3226,7 +3226,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -3235,7 +3235,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -3243,11 +3243,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1571]
+ "children": [1572]
},
{
"title": "Properties",
- "children": [1575, 1573, 1574]
+ "children": [1576, 1574, 1575]
}
],
"sources": [
@@ -3255,20 +3255,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 120,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L120"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1548,
+ "id": 1549,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -3294,7 +3294,7 @@
},
"children": [
{
- "id": 1549,
+ "id": 1550,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3304,12 +3304,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"signatures": [
{
- "id": 1550,
+ "id": 1551,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -3319,12 +3319,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"parameters": [
{
- "id": 1551,
+ "id": 1552,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3335,7 +3335,7 @@
}
},
{
- "id": 1552,
+ "id": 1553,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -3348,25 +3348,25 @@
],
"type": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1530,
+ "target": 1531,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1529,
+ "target": 1530,
"name": "AuthError.constructor"
}
},
{
- "id": 1554,
+ "id": 1555,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3395,7 +3395,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3424,7 +3424,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1555,
+ "id": 1556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3437,12 +3437,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1534,
+ "target": 1535,
"name": "AuthError.code"
}
},
{
- "id": 1553,
+ "id": 1554,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -3452,7 +3452,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L80"
}
],
"type": {
@@ -3461,7 +3461,7 @@
}
},
{
- "id": 1556,
+ "id": 1557,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3481,7 +3481,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -3499,7 +3499,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1536,
+ "target": 1537,
"name": "AuthError.status"
}
}
@@ -3507,11 +3507,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1549]
+ "children": [1550]
},
{
"title": "Properties",
- "children": [1554, 1553, 1556]
+ "children": [1555, 1554, 1557]
}
],
"sources": [
@@ -3519,20 +3519,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 79,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L79"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1667,
+ "id": 1668,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -3558,7 +3558,7 @@
},
"children": [
{
- "id": 1668,
+ "id": 1669,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3568,12 +3568,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L299"
}
],
"signatures": [
{
- "id": 1669,
+ "id": 1670,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -3583,12 +3583,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L299"
}
],
"parameters": [
{
- "id": 1670,
+ "id": 1671,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3599,7 +3599,7 @@
}
},
{
- "id": 1671,
+ "id": 1672,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3610,7 +3610,7 @@
}
},
{
- "id": 1672,
+ "id": 1673,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -3639,25 +3639,25 @@
],
"type": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1676,
+ "id": 1677,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3686,7 +3686,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3715,7 +3715,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1677,
+ "id": 1678,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3728,12 +3728,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1674,
+ "id": 1675,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3745,7 +3745,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -3754,12 +3754,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1673,
+ "id": 1674,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -3777,7 +3777,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L297"
}
],
"type": {
@@ -3802,7 +3802,7 @@
}
},
{
- "id": 1675,
+ "id": 1676,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3822,7 +3822,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -3831,7 +3831,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -3839,11 +3839,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1668]
+ "children": [1669]
},
{
"title": "Properties",
- "children": [1676, 1674, 1673, 1675]
+ "children": [1677, 1675, 1674, 1676]
}
],
"sources": [
@@ -3851,20 +3851,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 293,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L293"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1558,
+ "id": 1559,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -3890,7 +3890,7 @@
},
"children": [
{
- "id": 1559,
+ "id": 1560,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3900,12 +3900,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"signatures": [
{
- "id": 1560,
+ "id": 1561,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -3915,12 +3915,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"parameters": [
{
- "id": 1561,
+ "id": 1562,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3931,7 +3931,7 @@
}
},
{
- "id": 1562,
+ "id": 1563,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -3942,7 +3942,7 @@
}
},
{
- "id": 1563,
+ "id": 1564,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3953,7 +3953,7 @@
}
},
{
- "id": 1564,
+ "id": 1565,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -3975,25 +3975,25 @@
],
"type": {
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1530,
+ "target": 1531,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1529,
+ "target": 1530,
"name": "AuthError.constructor"
}
},
{
- "id": 1567,
+ "id": 1568,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4022,7 +4022,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -4051,7 +4051,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1568,
+ "id": 1569,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4064,12 +4064,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1534,
+ "target": 1535,
"name": "AuthError.code"
}
},
{
- "id": 1565,
+ "id": 1566,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4079,7 +4079,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -4093,7 +4093,7 @@
}
},
{
- "id": 1566,
+ "id": 1567,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4111,7 +4111,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -4120,7 +4120,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1536,
+ "target": 1537,
"name": "AuthError.status"
}
}
@@ -4128,11 +4128,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1559]
+ "children": [1560]
},
{
"title": "Properties",
- "children": [1567, 1565, 1566]
+ "children": [1568, 1566, 1567]
}
],
"sources": [
@@ -4140,13 +4140,13 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 99,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L99"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -4154,47 +4154,47 @@
"extendedBy": [
{
"type": "reference",
- "target": 1570,
+ "target": 1571,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1578,
+ "target": 1579,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1586,
+ "target": 1587,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1595,
+ "target": 1596,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1622,
+ "target": 1623,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1649,
+ "target": 1650,
"name": "AuthPKCECodeVerifierMissingError"
},
{
"type": "reference",
- "target": 1657,
+ "target": 1658,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1679,
+ "target": 1680,
"name": "AuthInvalidJwtError"
}
]
@@ -4217,7 +4217,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"signatures": [
@@ -4251,7 +4251,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"parameters": [
@@ -4283,7 +4283,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 70,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
}
],
"type": {
@@ -4512,7 +4512,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"type": {
@@ -4528,7 +4528,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"indexSignatures": [
@@ -4543,7 +4543,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 68,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
}
],
"parameters": [
@@ -4580,7 +4580,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
}
],
"type": {
@@ -4601,7 +4601,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 65,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
}
]
}
@@ -4637,12 +4637,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
}
],
"type": {
"type": "reference",
- "target": 1306,
+ "target": 1307,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -4666,12 +4666,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
}
],
"type": {
"type": "reference",
- "target": 1432,
+ "target": 1433,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -4687,7 +4687,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"signatures": [
@@ -4718,7 +4718,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"parameters": [
@@ -4730,7 +4730,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 905,
+ "target": 906,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -4745,7 +4745,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4767,7 +4767,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 337,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
}
],
"signatures": [
@@ -4798,7 +4798,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 337,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
}
],
"parameters": [
@@ -4859,7 +4859,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4881,7 +4881,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"signatures": [
@@ -4904,7 +4904,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"parameters": [
@@ -4916,7 +4916,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1115,
+ "target": 1116,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -4931,7 +4931,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1116,
+ "target": 1117,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -4953,7 +4953,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"signatures": [
@@ -4976,7 +4976,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"parameters": [
@@ -5017,7 +5017,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -5039,7 +5039,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"signatures": [
@@ -5062,7 +5062,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"parameters": [
@@ -5137,7 +5137,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 129,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
}
],
"type": {
@@ -5166,7 +5166,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 132,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
}
],
"type": {
@@ -5186,7 +5186,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 127,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
}
]
}
@@ -5203,7 +5203,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -5225,7 +5225,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"signatures": [
@@ -5256,7 +5256,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"parameters": [
@@ -5294,7 +5294,7 @@
},
"type": {
"type": "reference",
- "target": 1327,
+ "target": 1328,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -5330,7 +5330,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5356,7 +5356,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5375,14 +5375,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -5400,14 +5400,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
},
{
"type": "reference",
- "target": 1320,
+ "target": 1321,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -5425,7 +5425,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5445,7 +5445,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
@@ -5470,7 +5470,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -5493,7 +5493,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -5512,7 +5512,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -5529,12 +5529,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -5551,7 +5551,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -5576,7 +5576,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"signatures": [
@@ -5599,7 +5599,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"parameters": [
@@ -5683,7 +5683,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -5702,7 +5702,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -5714,7 +5714,7 @@
},
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -5733,7 +5733,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
]
}
@@ -5756,7 +5756,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 310,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
}
],
"signatures": [
@@ -5864,7 +5864,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 310,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
}
],
"parameters": [
@@ -5911,7 +5911,7 @@
},
"type": {
"type": "reference",
- "target": 905,
+ "target": 906,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -5926,7 +5926,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -5957,7 +5957,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 32,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
}
]
},
@@ -5977,9 +5977,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 298,
+ "line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L299"
}
],
"signatures": [
@@ -6011,9 +6011,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 298,
+ "line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L299"
}
],
"parameters": [
@@ -6058,9 +6058,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 203,
+ "line": 204,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L204"
}
],
"type": {
@@ -6088,14 +6088,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 207,
+ "line": 208,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L207"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L208"
}
],
"type": {
"type": "reference",
- "target": 1175,
+ "target": 1176,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -6117,14 +6117,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 213,
+ "line": 214,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L214"
}
],
"type": {
"type": "reference",
- "target": 1484,
+ "target": 1485,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -6138,9 +6138,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 757,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L757"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"signatures": [
@@ -6161,9 +6161,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 757,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L757"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"parameters": [
@@ -6188,7 +6188,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 799,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -6208,9 +6208,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3801,
+ "line": 3807,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3801"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3807"
}
],
"signatures": [
@@ -6257,9 +6257,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3801,
+ "line": 3807,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3801"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3807"
}
],
"parameters": [
@@ -6351,9 +6351,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3810,
+ "line": 3816,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3810"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3816"
}
],
"type": {
@@ -6380,9 +6380,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3813,
+ "line": 3819,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3813"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3819"
}
],
"type": {
@@ -6403,16 +6403,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3813,
+ "line": 3819,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3813"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3819"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1375,
+ "target": 1376,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -6428,9 +6428,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3813,
+ "line": 3819,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3813"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3819"
}
]
}
@@ -6461,16 +6461,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3807,
+ "line": 3813,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3807"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3813"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1375,
+ "target": 1376,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -6486,9 +6486,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3803,
+ "line": 3809,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3803"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3809"
}
]
}
@@ -6524,9 +6524,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
@@ -6547,14 +6547,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
"type": "reference",
- "target": 1355,
+ "target": 1356,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
@@ -6568,14 +6568,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
"type": "reference",
- "target": 1340,
+ "target": 1341,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
@@ -6589,9 +6589,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
@@ -6614,9 +6614,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
]
}
@@ -6631,9 +6631,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3818,
+ "line": 3824,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3818"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3824"
}
],
"type": {
@@ -6651,9 +6651,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3816,
+ "line": 3822,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3816"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3822"
}
]
}
@@ -6676,9 +6676,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3820,
+ "line": 3826,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3826"
}
],
"type": {
@@ -6695,14 +6695,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3820,
+ "line": 3826,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3826"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -6717,9 +6717,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3820,
+ "line": 3826,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3826"
}
]
}
@@ -6742,9 +6742,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3821,
+ "line": 3827,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3827"
}
],
"type": {
@@ -6761,9 +6761,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3821,
+ "line": 3827,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3827"
}
],
"type": {
@@ -6781,9 +6781,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3821,
+ "line": 3827,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3827"
}
]
}
@@ -6806,9 +6806,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1478,
+ "line": 1484,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1484"
}
],
"signatures": [
@@ -6838,9 +6838,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1478,
+ "line": 1484,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1484"
}
],
"type": {
@@ -6871,9 +6871,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1571,
+ "line": 1577,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1577"
}
],
"type": {
@@ -6894,14 +6894,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1572,
+ "line": 1578,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1572"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1578"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -6916,9 +6916,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1571,
+ "line": 1577,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1577"
}
]
}
@@ -6933,9 +6933,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1574,
+ "line": 1580,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1574"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1580"
}
],
"type": {
@@ -6953,9 +6953,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1570,
+ "line": 1576,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1570"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1576"
}
]
}
@@ -6978,9 +6978,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1577,
+ "line": 1583,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1577"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1583"
}
],
"type": {
@@ -7001,9 +7001,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1578,
+ "line": 1584,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1578"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1584"
}
],
"type": {
@@ -7021,9 +7021,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1577,
+ "line": 1583,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1577"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1583"
}
]
}
@@ -7038,14 +7038,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1580,
+ "line": 1586,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1580"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1586"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7060,9 +7060,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1576,
+ "line": 1582,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1576"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1582"
}
]
}
@@ -7085,9 +7085,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1583,
+ "line": 1589,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1589"
}
],
"type": {
@@ -7108,9 +7108,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1584,
+ "line": 1590,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1590"
}
],
"type": {
@@ -7128,9 +7128,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1583,
+ "line": 1589,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1589"
}
]
}
@@ -7145,9 +7145,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1586,
+ "line": 1592,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1592"
}
],
"type": {
@@ -7165,9 +7165,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1582,
+ "line": 1588,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1582"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1588"
}
]
}
@@ -7190,9 +7190,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1720,
+ "line": 1726,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1720"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1726"
}
],
"signatures": [
@@ -7213,9 +7213,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1720,
+ "line": 1726,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1720"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1726"
}
],
"parameters": [
@@ -7250,7 +7250,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -7270,9 +7270,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2316,
+ "line": 2322,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2316"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2322"
}
],
"signatures": [
@@ -7293,9 +7293,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2316,
+ "line": 2322,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2316"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2322"
}
],
"type": {
@@ -7326,9 +7326,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2318,
+ "line": 2324,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2324"
}
],
"type": {
@@ -7349,16 +7349,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2319,
+ "line": 2325,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2319"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2325"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -7374,9 +7374,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2318,
+ "line": 2324,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2324"
}
]
}
@@ -7391,9 +7391,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2321,
+ "line": 2327,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2327"
}
],
"type": {
@@ -7411,9 +7411,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2317,
+ "line": 2323,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2317"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2323"
}
]
}
@@ -7436,9 +7436,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2323,
+ "line": 2329,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2323"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2329"
}
],
"type": {
@@ -7455,14 +7455,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2323,
+ "line": 2329,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2323"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2329"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7477,9 +7477,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2323,
+ "line": 2329,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2323"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2329"
}
]
}
@@ -7502,9 +7502,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 453,
+ "line": 459,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L459"
}
],
"signatures": [
@@ -7525,9 +7525,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 453,
+ "line": 459,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L459"
}
],
"type": {
@@ -7539,7 +7539,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1316,
+ "target": 1317,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -7561,9 +7561,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 417,
+ "line": 423,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L417"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L423"
}
],
"signatures": [
@@ -7584,9 +7584,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 417,
+ "line": 423,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L417"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L423"
}
],
"type": {
@@ -7605,21 +7605,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2341,
+ "line": 2347,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2347"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2346,
+ "line": 2352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2352"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2348,
+ "line": 2354,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2348"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2354"
}
],
"signatures": [
@@ -7640,9 +7640,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2341,
+ "line": 2347,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2347"
}
],
"parameters": [
@@ -7654,7 +7654,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 965,
+ "target": 966,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -7669,7 +7669,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 807,
+ "target": 808,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -7695,9 +7695,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2346,
+ "line": 2352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2352"
}
],
"parameters": [
@@ -7709,7 +7709,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 977,
+ "target": 978,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -7724,7 +7724,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 799,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -7744,21 +7744,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2213,
+ "line": 2219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2219"
}
],
"signatures": [
@@ -7779,9 +7779,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
],
"parameters": [
@@ -7810,9 +7810,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
],
"signatures": [
@@ -7825,9 +7825,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
],
"parameters": [
@@ -7859,7 +7859,7 @@
},
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -7895,9 +7895,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2194,
+ "line": 2200,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2200"
}
],
"type": {
@@ -7918,14 +7918,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2194,
+ "line": 2200,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2200"
}
],
"type": {
"type": "reference",
- "target": 918,
+ "target": 919,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -7940,9 +7940,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2194,
+ "line": 2200,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2200"
}
]
}
@@ -7958,9 +7958,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 90,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
]
}
@@ -8002,9 +8002,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
],
"parameters": [
@@ -8033,9 +8033,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
],
"signatures": [
@@ -8048,9 +8048,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
],
"parameters": [
@@ -8082,7 +8082,7 @@
},
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -8129,9 +8129,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2210,
+ "line": 2216,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2216"
}
],
"type": {
@@ -8152,14 +8152,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2210,
+ "line": 2216,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2216"
}
],
"type": {
"type": "reference",
- "target": 918,
+ "target": 919,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -8174,9 +8174,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2210,
+ "line": 2216,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2216"
}
]
}
@@ -8192,9 +8192,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
]
}
@@ -8211,9 +8211,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1391,
+ "line": 1397,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1397"
}
],
"signatures": [
@@ -8234,9 +8234,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1391,
+ "line": 1397,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1397"
}
],
"type": {
@@ -8248,7 +8248,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8268,9 +8268,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
],
"signatures": [
@@ -8291,9 +8291,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
],
"parameters": [
@@ -8331,9 +8331,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
],
"type": {
@@ -8351,9 +8351,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
]
}
@@ -8369,7 +8369,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8389,9 +8389,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1426,
+ "line": 1432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1432"
}
],
"signatures": [
@@ -8412,9 +8412,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1426,
+ "line": 1432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1432"
}
],
"parameters": [
@@ -8426,7 +8426,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1061,
+ "target": 1062,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -8441,7 +8441,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 793,
+ "target": 794,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -8461,9 +8461,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2269,
+ "line": 2275,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2275"
}
],
"signatures": [
@@ -8484,9 +8484,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2269,
+ "line": 2275,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2275"
}
],
"parameters": [
@@ -8543,9 +8543,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2273,
+ "line": 2279,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2273"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2279"
}
],
"type": {
@@ -8572,9 +8572,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2272,
+ "line": 2278,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2272"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2278"
}
],
"type": {
@@ -8592,9 +8592,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2271,
+ "line": 2277,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2277"
}
]
}
@@ -8630,9 +8630,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2277,
+ "line": 2283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2283"
}
],
"type": {
@@ -8655,9 +8655,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2278,
+ "line": 2284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2278"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2284"
}
],
"type": {
@@ -8675,9 +8675,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2276,
+ "line": 2282,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2282"
}
]
}
@@ -8700,9 +8700,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2286,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2286"
}
],
"type": {
@@ -8719,14 +8719,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2286,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2286"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -8741,9 +8741,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2286,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2286"
}
]
}
@@ -8766,9 +8766,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1857,
+ "line": 1863,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1857"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1863"
}
],
"signatures": [
@@ -8789,9 +8789,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1857,
+ "line": 1863,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1857"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1863"
}
],
"parameters": [
@@ -8827,9 +8827,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1858,
+ "line": 1864,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1858"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1864"
}
],
"type": {
@@ -8846,9 +8846,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1859,
+ "line": 1865,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1859"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1865"
}
],
"type": {
@@ -8866,9 +8866,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1857,
+ "line": 1863,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1857"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1863"
}
]
}
@@ -8884,7 +8884,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8904,9 +8904,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 559,
+ "line": 565,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L565"
}
],
"signatures": [
@@ -8938,9 +8938,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 559,
+ "line": 565,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L565"
}
],
"parameters": [
@@ -8954,7 +8954,7 @@
},
"type": {
"type": "reference",
- "target": 928,
+ "target": 929,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -8969,7 +8969,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8989,9 +8989,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1174,
+ "line": 1180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1174"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1180"
}
],
"signatures": [
@@ -9012,9 +9012,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1174,
+ "line": 1180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1174"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1180"
}
],
"parameters": [
@@ -9026,7 +9026,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 977,
+ "target": 978,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -9041,7 +9041,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 799,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -9061,9 +9061,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 745,
+ "line": 751,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L745"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L751"
}
],
"signatures": [
@@ -9084,9 +9084,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 745,
+ "line": 751,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L745"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L751"
}
],
"parameters": [
@@ -9098,7 +9098,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 965,
+ "target": 966,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -9113,7 +9113,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 807,
+ "target": 808,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -9133,9 +9133,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1227,
+ "line": 1233,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1233"
}
],
"signatures": [
@@ -9172,9 +9172,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1227,
+ "line": 1233,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1233"
}
],
"parameters": [
@@ -9186,7 +9186,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 947,
+ "target": 948,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -9201,7 +9201,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 793,
+ "target": 794,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -9221,9 +9221,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 681,
+ "line": 687,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L681"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L687"
}
],
"signatures": [
@@ -9244,9 +9244,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 681,
+ "line": 687,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L681"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L687"
}
],
"parameters": [
@@ -9258,7 +9258,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 942,
+ "target": 943,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -9273,7 +9273,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 802,
+ "target": 803,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -9293,9 +9293,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1345,
+ "line": 1351,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1345"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1351"
}
],
"signatures": [
@@ -9316,9 +9316,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1345,
+ "line": 1351,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1345"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1351"
}
],
"parameters": [
@@ -9330,7 +9330,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1075,
+ "target": 1076,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -9345,7 +9345,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 820,
+ "target": 821,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -9365,9 +9365,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 772,
+ "line": 778,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L778"
}
],
"signatures": [
@@ -9399,9 +9399,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 772,
+ "line": 778,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L778"
}
],
"parameters": [
@@ -9413,7 +9413,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1038,
+ "target": 1039,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -9447,9 +9447,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
],
"type": {
@@ -9470,14 +9470,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -9491,14 +9491,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -9513,9 +9513,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
]
}
@@ -9530,9 +9530,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 775,
+ "line": 781,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L775"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L781"
}
],
"type": {
@@ -9550,9 +9550,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 773,
+ "line": 779,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L773"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L779"
}
]
}
@@ -9575,9 +9575,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
@@ -9598,9 +9598,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
@@ -9617,9 +9617,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
@@ -9637,9 +9637,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
]
}
@@ -9654,14 +9654,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9676,9 +9676,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
]
}
@@ -9701,9 +9701,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
],
"signatures": [
@@ -9764,9 +9764,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
],
"parameters": [
@@ -9778,7 +9778,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1331,
+ "target": 1332,
"name": "SignOut",
"package": "@supabase/auth-js"
},
@@ -9810,9 +9810,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
],
"type": {
@@ -9824,7 +9824,7 @@
},
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9841,9 +9841,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
]
}
@@ -9864,9 +9864,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 602,
+ "line": 608,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L608"
}
],
"signatures": [
@@ -9907,9 +9907,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 602,
+ "line": 608,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L608"
}
],
"parameters": [
@@ -9921,7 +9921,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 934,
+ "target": 935,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -9936,7 +9936,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9956,9 +9956,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2945,
+ "line": 2951,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2945"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2951"
}
],
"signatures": [
@@ -9994,9 +9994,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2945,
+ "line": 2951,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2945"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2951"
}
],
"type": {
@@ -10026,9 +10026,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2958,
+ "line": 2964,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2964"
}
],
"signatures": [
@@ -10058,9 +10058,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2958,
+ "line": 2964,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2964"
}
],
"type": {
@@ -10090,9 +10090,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2446,
+ "line": 2452,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2452"
}
],
"signatures": [
@@ -10113,9 +10113,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2446,
+ "line": 2452,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2452"
}
],
"parameters": [
@@ -10127,7 +10127,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -10161,9 +10161,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2448,
+ "line": 2454,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2448"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2454"
}
],
"type": {
@@ -10186,9 +10186,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2449,
+ "line": 2455,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2455"
}
],
"type": {
@@ -10206,9 +10206,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2447,
+ "line": 2453,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2453"
}
]
}
@@ -10231,9 +10231,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2451,
+ "line": 2457,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2457"
}
],
"type": {
@@ -10250,14 +10250,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2451,
+ "line": 2457,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2457"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -10272,9 +10272,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2451,
+ "line": 2457,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2457"
}
]
}
@@ -10297,9 +10297,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1785,
+ "line": 1791,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1791"
}
],
"signatures": [
@@ -10320,9 +10320,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1785,
+ "line": 1791,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1791"
}
],
"parameters": [
@@ -10334,7 +10334,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 899,
+ "target": 900,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -10365,9 +10365,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1788,
+ "line": 1794,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1788"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1794"
}
],
"type": {
@@ -10385,9 +10385,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1787,
+ "line": 1793,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1787"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1793"
}
]
}
@@ -10404,7 +10404,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -10424,9 +10424,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1284,
+ "line": 1290,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1284"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1290"
}
],
"signatures": [
@@ -10447,9 +10447,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1284,
+ "line": 1290,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1284"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1290"
}
],
"parameters": [
@@ -10461,7 +10461,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1039,
+ "target": 1040,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -10476,7 +10476,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -10508,9 +10508,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 194,
+ "line": 195,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L195"
}
]
},
@@ -10551,7 +10551,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"signatures": [
@@ -10566,7 +10566,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"parameters": [
@@ -10616,7 +10616,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 35,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L35"
}
],
"type": {
@@ -10646,7 +10646,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L52"
}
],
"extendedTypes": [
@@ -10662,14 +10662,14 @@
]
},
{
- "id": 905,
+ "id": 906,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 907,
+ "id": 908,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -10703,9 +10703,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 515,
+ "line": 524,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L515"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L524"
}
],
"type": {
@@ -10714,7 +10714,7 @@
}
},
{
- "id": 910,
+ "id": 911,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -10732,9 +10732,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 541,
+ "line": 550,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L541"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L550"
}
],
"type": {
@@ -10743,7 +10743,7 @@
}
},
{
- "id": 916,
+ "id": 917,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -10762,9 +10762,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 466,
+ "line": 475,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L466"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L475"
}
],
"type": {
@@ -10778,7 +10778,7 @@
}
},
{
- "id": 908,
+ "id": 909,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -10796,9 +10796,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 522,
+ "line": 531,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L531"
}
],
"type": {
@@ -10807,7 +10807,7 @@
}
},
{
- "id": 913,
+ "id": 914,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -10841,9 +10841,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 566,
+ "line": 575,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L566"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L575"
}
],
"type": {
@@ -10852,7 +10852,7 @@
}
},
{
- "id": 914,
+ "id": 915,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -10871,9 +10871,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 483,
+ "line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L492"
}
],
"type": {
@@ -10887,7 +10887,7 @@
}
},
{
- "id": 917,
+ "id": 918,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -10906,9 +10906,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 476,
+ "line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -10922,7 +10922,7 @@
}
},
{
- "id": 912,
+ "id": 913,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -10948,9 +10948,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 559,
+ "line": 568,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L568"
}
],
"type": {
@@ -10959,7 +10959,7 @@
}
},
{
- "id": 915,
+ "id": 916,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -10978,9 +10978,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 471,
+ "line": 480,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L480"
}
],
"type": {
@@ -10994,7 +10994,7 @@
}
},
{
- "id": 909,
+ "id": 910,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -11012,9 +11012,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 529,
+ "line": 538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L529"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L538"
}
],
"type": {
@@ -11023,7 +11023,7 @@
}
},
{
- "id": 911,
+ "id": 912,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -11073,9 +11073,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 550,
+ "line": 559,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L550"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L559"
}
],
"type": {
@@ -11084,7 +11084,7 @@
}
},
{
- "id": 906,
+ "id": 907,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -11118,9 +11118,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 505,
+ "line": 514,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"type": {
@@ -11132,15 +11132,15 @@
"groups": [
{
"title": "Properties",
- "children": [907, 910, 916, 908, 913, 914, 917, 912, 915, 909, 911, 906]
+ "children": [908, 911, 917, 909, 914, 915, 918, 913, 916, 910, 912, 907]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 494,
+ "line": 503,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L503"
}
],
"extendedTypes": [
@@ -11153,7 +11153,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 899,
+ "target": 900,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -11168,7 +11168,7 @@
]
},
{
- "id": 837,
+ "id": 838,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -11188,7 +11188,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1289
+ "target": 1290
},
{
"kind": "text",
@@ -11200,7 +11200,7 @@
},
"children": [
{
- "id": 838,
+ "id": 839,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -11216,20 +11216,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 349,
+ "line": 358,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L349"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L358"
}
],
"type": {
"type": "reference",
- "target": 835,
+ "target": 836,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 839,
+ "id": 840,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -11245,9 +11245,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 355,
+ "line": 364,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L355"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L364"
}
],
"type": {
@@ -11259,20 +11259,20 @@
"groups": [
{
"title": "Properties",
- "children": [838, 839]
+ "children": [839, 840]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 347,
+ "line": 356,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L347"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L356"
}
]
},
{
- "id": 1484,
+ "id": 1485,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -11287,7 +11287,7 @@
},
"children": [
{
- "id": 1488,
+ "id": 1489,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -11295,14 +11295,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1912,
+ "line": 1921,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1912"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1921"
}
],
"signatures": [
{
- "id": 1489,
+ "id": 1490,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -11329,14 +11329,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1912,
+ "line": 1921,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1912"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1921"
}
],
"parameters": [
{
- "id": 1490,
+ "id": 1491,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11355,7 +11355,7 @@
}
},
{
- "id": 1491,
+ "id": 1492,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -11373,14 +11373,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1492,
+ "id": 1493,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1493,
+ "id": 1494,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -11398,9 +11398,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1914,
+ "line": 1923,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1914"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1923"
}
],
"type": {
@@ -11412,15 +11412,15 @@
"groups": [
{
"title": "Properties",
- "children": [1493]
+ "children": [1494]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1914,
+ "line": 1923,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1914"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1923"
}
]
}
@@ -11436,7 +11436,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1475,
+ "target": 1476,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -11448,7 +11448,7 @@
]
},
{
- "id": 1494,
+ "id": 1495,
"name": "denyAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -11456,14 +11456,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1929,
+ "line": 1938,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1929"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1938"
}
],
"signatures": [
{
- "id": 1495,
+ "id": 1496,
"name": "denyAuthorization",
"variant": "signature",
"kind": 4096,
@@ -11490,14 +11490,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1929,
+ "line": 1938,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1929"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1938"
}
],
"parameters": [
{
- "id": 1496,
+ "id": 1497,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11516,7 +11516,7 @@
}
},
{
- "id": 1497,
+ "id": 1498,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -11534,14 +11534,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1498,
+ "id": 1499,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1499,
+ "id": 1500,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -11559,9 +11559,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1931,
+ "line": 1940,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1940"
}
],
"type": {
@@ -11573,15 +11573,15 @@
"groups": [
{
"title": "Properties",
- "children": [1499]
+ "children": [1500]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1931,
+ "line": 1940,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1940"
}
]
}
@@ -11597,7 +11597,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1475,
+ "target": 1476,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -11609,7 +11609,7 @@
]
},
{
- "id": 1485,
+ "id": 1486,
"name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
@@ -11617,14 +11617,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1898,
+ "line": 1907,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1898"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1907"
}
],
"signatures": [
{
- "id": 1486,
+ "id": 1487,
"name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
@@ -11671,14 +11671,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1898,
+ "line": 1907,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1898"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1907"
}
],
"parameters": [
{
- "id": 1487,
+ "id": 1488,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11706,7 +11706,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1474,
+ "target": 1475,
"name": "AuthOAuthAuthorizationDetailsResponse",
"package": "@supabase/auth-js"
}
@@ -11718,7 +11718,7 @@
]
},
{
- "id": 1500,
+ "id": 1501,
"name": "listGrants",
"variant": "declaration",
"kind": 2048,
@@ -11726,14 +11726,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1940,
+ "line": 1949,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1940"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1949"
}
],
"signatures": [
{
- "id": 1501,
+ "id": 1502,
"name": "listGrants",
"variant": "signature",
"kind": 4096,
@@ -11760,9 +11760,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1940,
+ "line": 1949,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1940"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1949"
}
],
"type": {
@@ -11774,7 +11774,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1481,
+ "target": 1482,
"name": "AuthOAuthGrantsResponse",
"package": "@supabase/auth-js"
}
@@ -11786,7 +11786,7 @@
]
},
{
- "id": 1502,
+ "id": 1503,
"name": "revokeGrant",
"variant": "declaration",
"kind": 2048,
@@ -11794,14 +11794,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
],
"signatures": [
{
- "id": 1503,
+ "id": 1504,
"name": "revokeGrant",
"variant": "signature",
"kind": 4096,
@@ -11828,14 +11828,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
],
"parameters": [
{
- "id": 1504,
+ "id": 1505,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -11851,14 +11851,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1505,
+ "id": 1506,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1506,
+ "id": 1507,
"name": "clientId",
"variant": "declaration",
"kind": 1024,
@@ -11874,9 +11874,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
],
"type": {
@@ -11888,15 +11888,15 @@
"groups": [
{
"title": "Properties",
- "children": [1506]
+ "children": [1507]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
]
}
@@ -11912,7 +11912,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1482,
+ "target": 1483,
"name": "AuthOAuthRevokeGrantResponse",
"package": "@supabase/auth-js"
}
@@ -11927,27 +11927,27 @@
"groups": [
{
"title": "Methods",
- "children": [1488, 1494, 1485, 1500, 1502]
+ "children": [1489, 1495, 1486, 1501, 1503]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1876,
+ "line": 1885,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1876"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1885"
}
]
},
{
- "id": 1112,
+ "id": 1113,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1113,
+ "id": 1114,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -11981,9 +11981,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 920,
+ "line": 929,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L920"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L929"
}
],
"type": {
@@ -11992,7 +11992,7 @@
}
},
{
- "id": 1114,
+ "id": 1115,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -12010,9 +12010,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 922,
+ "line": 931,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L922"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L931"
}
],
"type": {
@@ -12024,20 +12024,20 @@
"groups": [
{
"title": "Properties",
- "children": [1113, 1114]
+ "children": [1114, 1115]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 914,
+ "line": 923,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L914"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L923"
}
]
},
{
- "id": 1306,
+ "id": 1307,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -12058,7 +12058,7 @@
},
"children": [
{
- "id": 1310,
+ "id": 1311,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -12066,14 +12066,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1371,
+ "line": 1380,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1371"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1380"
}
],
"signatures": [
{
- "id": 1311,
+ "id": 1312,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -12093,7 +12093,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1278
+ "target": 1279
}
]
},
@@ -12106,21 +12106,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1371,
+ "line": 1380,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1371"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1380"
}
],
"parameters": [
{
- "id": 1312,
+ "id": 1313,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1296,
+ "target": 1297,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -12135,7 +12135,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1293,
+ "target": 1294,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -12147,7 +12147,7 @@
]
},
{
- "id": 1307,
+ "id": 1308,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -12155,14 +12155,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1361,
+ "line": 1370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1370"
}
],
"signatures": [
{
- "id": 1308,
+ "id": 1309,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -12178,21 +12178,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1361,
+ "line": 1370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1370"
}
],
"parameters": [
{
- "id": 1309,
+ "id": 1310,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1303,
+ "target": 1304,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -12207,7 +12207,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1300,
+ "target": 1301,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -12222,20 +12222,20 @@
"groups": [
{
"title": "Methods",
- "children": [1310, 1307]
+ "children": [1311, 1308]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1356,
+ "line": 1365,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1356"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1365"
}
]
},
{
- "id": 1432,
+ "id": 1433,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -12250,7 +12250,7 @@
},
"children": [
{
- "id": 1436,
+ "id": 1437,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -12258,14 +12258,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1716,
+ "line": 1725,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1716"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1725"
}
],
"signatures": [
{
- "id": 1437,
+ "id": 1438,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -12289,21 +12289,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1716,
+ "line": 1725,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1716"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1725"
}
],
"parameters": [
{
- "id": 1438,
+ "id": 1439,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1404,
+ "target": 1405,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -12318,7 +12318,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12330,7 +12330,7 @@
]
},
{
- "id": 1446,
+ "id": 1447,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -12338,14 +12338,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"signatures": [
{
- "id": 1447,
+ "id": 1448,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -12369,14 +12369,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"parameters": [
{
- "id": 1448,
+ "id": 1449,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12397,14 +12397,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1449,
+ "id": 1450,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1450,
+ "id": 1451,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12412,9 +12412,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"type": {
@@ -12423,7 +12423,7 @@
}
},
{
- "id": 1451,
+ "id": 1452,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12431,9 +12431,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"type": {
@@ -12445,7 +12445,7 @@
},
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12456,15 +12456,15 @@
"groups": [
{
"title": "Properties",
- "children": [1450, 1451]
+ "children": [1451, 1452]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
]
}
@@ -12477,7 +12477,7 @@
]
},
{
- "id": 1439,
+ "id": 1440,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -12485,14 +12485,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1724,
+ "line": 1733,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1724"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1733"
}
],
"signatures": [
{
- "id": 1440,
+ "id": 1441,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -12516,14 +12516,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1724,
+ "line": 1733,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1724"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1733"
}
],
"parameters": [
{
- "id": 1441,
+ "id": 1442,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12543,7 +12543,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12555,7 +12555,7 @@
]
},
{
- "id": 1433,
+ "id": 1434,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -12563,14 +12563,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1708,
+ "line": 1717,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1717"
}
],
"signatures": [
{
- "id": 1434,
+ "id": 1435,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -12594,14 +12594,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1708,
+ "line": 1717,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1717"
}
],
"parameters": [
{
- "id": 1435,
+ "id": 1436,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -12610,7 +12610,7 @@
},
"type": {
"type": "reference",
- "target": 1327,
+ "target": 1328,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -12625,7 +12625,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1420,
+ "target": 1421,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -12637,7 +12637,7 @@
]
},
{
- "id": 1452,
+ "id": 1453,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -12645,14 +12645,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1748,
+ "line": 1757,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1748"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1757"
}
],
"signatures": [
{
- "id": 1453,
+ "id": 1454,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -12676,14 +12676,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1748,
+ "line": 1757,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1748"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1757"
}
],
"parameters": [
{
- "id": 1454,
+ "id": 1455,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12703,7 +12703,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12715,7 +12715,7 @@
]
},
{
- "id": 1442,
+ "id": 1443,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -12723,14 +12723,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1732,
+ "line": 1741,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1732"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1741"
}
],
"signatures": [
{
- "id": 1443,
+ "id": 1444,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -12754,14 +12754,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1732,
+ "line": 1741,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1732"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1741"
}
],
"parameters": [
{
- "id": 1444,
+ "id": 1445,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12772,14 +12772,14 @@
}
},
{
- "id": 1445,
+ "id": 1446,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1412,
+ "target": 1413,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -12794,7 +12794,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12809,20 +12809,20 @@
"groups": [
{
"title": "Methods",
- "children": [1436, 1446, 1439, 1433, 1452, 1442]
+ "children": [1437, 1447, 1440, 1434, 1453, 1443]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1701,
+ "line": 1710,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1701"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1710"
}
]
},
{
- "id": 1175,
+ "id": 1176,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -12837,7 +12837,7 @@
},
"children": [
{
- "id": 1292,
+ "id": 1293,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -12845,9 +12845,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1314,
+ "line": 1323,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1314"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1323"
}
],
"type": {
@@ -12861,7 +12861,7 @@
}
},
{
- "id": 1196,
+ "id": 1197,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -12869,32 +12869,32 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1258,
+ "line": 1267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1267"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1259,
+ "line": 1268,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1259"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1268"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1260,
+ "line": 1269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1260"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1269"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1261,
+ "line": 1270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1270"
}
],
"signatures": [
{
- "id": 1197,
+ "id": 1198,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -12910,14 +12910,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1258,
+ "line": 1267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1267"
}
],
"parameters": [
{
- "id": 1198,
+ "id": 1199,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -12925,14 +12925,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1199,
+ "id": 1200,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1200,
+ "id": 1201,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -12948,9 +12948,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1028,
+ "line": 1037,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1028"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1037"
}
],
"type": {
@@ -12962,15 +12962,15 @@
"groups": [
{
"title": "Properties",
- "children": [1200]
+ "children": [1201]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -12990,14 +12990,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1201,
+ "id": 1202,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1202,
+ "id": 1203,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13005,9 +13005,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -13016,7 +13016,7 @@
}
},
{
- "id": 1203,
+ "id": 1204,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13024,14 +13024,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13040,15 +13040,15 @@
"groups": [
{
"title": "Properties",
- "children": [1202, 1203]
+ "children": [1203, 1204]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13056,14 +13056,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1204,
+ "id": 1205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1205,
+ "id": 1206,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13071,22 +13071,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1206,
+ "id": 1207,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1209,
+ "id": 1210,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -13102,9 +13102,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1124,
+ "line": 1133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1133"
}
],
"type": {
@@ -13113,7 +13113,7 @@
}
},
{
- "id": 1207,
+ "id": 1208,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -13129,9 +13129,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1118,
+ "line": 1127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1127"
}
],
"type": {
@@ -13140,7 +13140,7 @@
}
},
{
- "id": 1208,
+ "id": 1209,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13156,9 +13156,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1121,
+ "line": 1130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1130"
}
],
"type": {
@@ -13170,22 +13170,22 @@
"groups": [
{
"title": "Properties",
- "children": [1209, 1207, 1208]
+ "children": [1210, 1208, 1209]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
}
},
{
- "id": 1210,
+ "id": 1211,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13193,9 +13193,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -13207,15 +13207,15 @@
"groups": [
{
"title": "Properties",
- "children": [1205, 1210]
+ "children": [1206, 1211]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13228,7 +13228,7 @@
}
},
{
- "id": 1211,
+ "id": 1212,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -13236,14 +13236,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1259,
+ "line": 1268,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1259"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1268"
}
],
"parameters": [
{
- "id": 1212,
+ "id": 1213,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -13251,14 +13251,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1213,
+ "id": 1214,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1215,
+ "id": 1216,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -13274,9 +13274,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1038,
+ "line": 1047,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1038"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1047"
}
],
"type": {
@@ -13294,7 +13294,7 @@
}
},
{
- "id": 1214,
+ "id": 1215,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -13310,9 +13310,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1028,
+ "line": 1037,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1028"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1037"
}
],
"type": {
@@ -13324,15 +13324,15 @@
"groups": [
{
"title": "Properties",
- "children": [1215, 1214]
+ "children": [1216, 1215]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13352,14 +13352,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1216,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1217,
+ "id": 1218,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13367,9 +13367,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -13378,7 +13378,7 @@
}
},
{
- "id": 1218,
+ "id": 1219,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13386,14 +13386,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13402,15 +13402,15 @@
"groups": [
{
"title": "Properties",
- "children": [1217, 1218]
+ "children": [1218, 1219]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13418,14 +13418,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1219,
+ "id": 1220,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1220,
+ "id": 1221,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13433,22 +13433,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1221,
+ "id": 1222,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1224,
+ "id": 1225,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -13464,9 +13464,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1124,
+ "line": 1133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1133"
}
],
"type": {
@@ -13475,7 +13475,7 @@
}
},
{
- "id": 1222,
+ "id": 1223,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -13491,9 +13491,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1118,
+ "line": 1127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1127"
}
],
"type": {
@@ -13502,7 +13502,7 @@
}
},
{
- "id": 1223,
+ "id": 1224,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13518,9 +13518,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1121,
+ "line": 1130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1130"
}
],
"type": {
@@ -13532,22 +13532,22 @@
"groups": [
{
"title": "Properties",
- "children": [1224, 1222, 1223]
+ "children": [1225, 1223, 1224]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
}
},
{
- "id": 1225,
+ "id": 1226,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13555,9 +13555,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -13569,15 +13569,15 @@
"groups": [
{
"title": "Properties",
- "children": [1220, 1225]
+ "children": [1221, 1226]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13590,7 +13590,7 @@
}
},
{
- "id": 1226,
+ "id": 1227,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -13598,14 +13598,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1260,
+ "line": 1269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1260"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1269"
}
],
"parameters": [
{
- "id": 1227,
+ "id": 1228,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -13613,14 +13613,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1228,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1229,
+ "id": 1230,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -13636,9 +13636,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1028,
+ "line": 1037,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1028"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1037"
}
],
"type": {
@@ -13647,7 +13647,7 @@
}
},
{
- "id": 1230,
+ "id": 1231,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -13655,22 +13655,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1047,
+ "line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1047"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1231,
+ "id": 1232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1232,
+ "id": 1233,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -13686,9 +13686,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1049,
+ "line": 1058,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1049"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1058"
}
],
"type": {
@@ -13697,7 +13697,7 @@
}
},
{
- "id": 1233,
+ "id": 1234,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -13715,9 +13715,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1051,
+ "line": 1060,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1051"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1060"
}
],
"type": {
@@ -13732,15 +13732,15 @@
"groups": [
{
"title": "Properties",
- "children": [1232, 1233]
+ "children": [1233, 1234]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1047,
+ "line": 1056,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1047"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1056"
}
]
}
@@ -13750,15 +13750,15 @@
"groups": [
{
"title": "Properties",
- "children": [1229, 1230]
+ "children": [1230, 1231]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13778,14 +13778,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1234,
+ "id": 1235,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1235,
+ "id": 1236,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13793,9 +13793,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -13804,7 +13804,7 @@
}
},
{
- "id": 1236,
+ "id": 1237,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13812,14 +13812,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13828,15 +13828,15 @@
"groups": [
{
"title": "Properties",
- "children": [1235, 1236]
+ "children": [1236, 1237]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13844,14 +13844,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1237,
+ "id": 1238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1238,
+ "id": 1239,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13859,22 +13859,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1242,
+ "id": 1243,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -13890,9 +13890,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1124,
+ "line": 1133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1133"
}
],
"type": {
@@ -13901,7 +13901,7 @@
}
},
{
- "id": 1240,
+ "id": 1241,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -13917,9 +13917,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1118,
+ "line": 1127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1127"
}
],
"type": {
@@ -13928,7 +13928,7 @@
}
},
{
- "id": 1241,
+ "id": 1242,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13944,9 +13944,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1121,
+ "line": 1130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1130"
}
],
"type": {
@@ -13955,7 +13955,7 @@
}
},
{
- "id": 1243,
+ "id": 1244,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -13963,9 +13963,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1144,
+ "line": 1153,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1153"
}
],
"type": {
@@ -13974,14 +13974,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1244,
+ "id": 1245,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1246,
+ "id": 1247,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -13989,22 +13989,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1147,
+ "line": 1156,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1156"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1247,
+ "id": 1248,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1248,
+ "id": 1249,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -14012,9 +14012,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1147,
+ "line": 1156,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1156"
}
],
"type": {
@@ -14031,22 +14031,22 @@
"groups": [
{
"title": "Properties",
- "children": [1248]
+ "children": [1249]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1147,
+ "line": 1156,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1156"
}
]
}
}
},
{
- "id": 1245,
+ "id": 1246,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -14054,9 +14054,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1146,
+ "line": 1155,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1155"
}
],
"type": {
@@ -14068,15 +14068,15 @@
"groups": [
{
"title": "Properties",
- "children": [1246, 1245]
+ "children": [1247, 1246]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1145,
+ "line": 1154,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1154"
}
]
}
@@ -14084,14 +14084,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1249,
+ "id": 1250,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1251,
+ "id": 1252,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -14099,22 +14099,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1151,
+ "line": 1160,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1160"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1252,
+ "id": 1253,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1253,
+ "id": 1254,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -14122,9 +14122,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1151,
+ "line": 1160,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1160"
}
],
"type": {
@@ -14141,22 +14141,22 @@
"groups": [
{
"title": "Properties",
- "children": [1253]
+ "children": [1254]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1151,
+ "line": 1160,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1160"
}
]
}
}
},
{
- "id": 1250,
+ "id": 1251,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -14164,9 +14164,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1150,
+ "line": 1159,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1150"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1159"
}
],
"type": {
@@ -14178,15 +14178,15 @@
"groups": [
{
"title": "Properties",
- "children": [1251, 1250]
+ "children": [1252, 1251]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1149,
+ "line": 1158,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1149"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1158"
}
]
}
@@ -14198,22 +14198,22 @@
"groups": [
{
"title": "Properties",
- "children": [1242, 1240, 1241, 1243]
+ "children": [1243, 1241, 1242, 1244]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
}
},
{
- "id": 1254,
+ "id": 1255,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -14221,9 +14221,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -14235,15 +14235,15 @@
"groups": [
{
"title": "Properties",
- "children": [1238, 1254]
+ "children": [1239, 1255]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -14256,7 +14256,7 @@
}
},
{
- "id": 1255,
+ "id": 1256,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -14264,21 +14264,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1261,
+ "line": 1270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1270"
}
],
"parameters": [
{
- "id": 1256,
+ "id": 1257,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1145,
+ "target": 1146,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -14293,7 +14293,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1164,
+ "target": 1165,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -14305,7 +14305,7 @@
]
},
{
- "id": 1281,
+ "id": 1282,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -14313,14 +14313,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1282,
+ "line": 1291,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1282"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1291"
}
],
"signatures": [
{
- "id": 1282,
+ "id": 1283,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -14336,14 +14336,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1282,
+ "line": 1291,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1282"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1291"
}
],
"parameters": [
{
- "id": 1283,
+ "id": 1284,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14351,14 +14351,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1284,
+ "id": 1285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1286,
+ "id": 1287,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -14374,9 +14374,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 982,
+ "line": 991,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L991"
}
],
"type": {
@@ -14385,7 +14385,7 @@
}
},
{
- "id": 1285,
+ "id": 1286,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -14401,9 +14401,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -14415,15 +14415,15 @@
"groups": [
{
"title": "Properties",
- "children": [1286, 1285]
+ "children": [1287, 1286]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -14439,7 +14439,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -14451,7 +14451,7 @@
]
},
{
- "id": 1176,
+ "id": 1177,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -14459,32 +14459,32 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1249,
+ "line": 1258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1258"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1250,
+ "line": 1259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1259"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1251,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1260"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1252,
+ "line": 1261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1261"
}
],
"signatures": [
{
- "id": 1177,
+ "id": 1178,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14516,14 +14516,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1249,
+ "line": 1258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1258"
}
],
"parameters": [
{
- "id": 1178,
+ "id": 1179,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14531,14 +14531,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1179,
+ "id": 1180,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1180,
+ "id": 1181,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -14554,9 +14554,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1430,
+ "line": 1439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1439"
}
],
"type": {
@@ -14565,7 +14565,7 @@
}
},
{
- "id": 1181,
+ "id": 1182,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14583,9 +14583,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1432,
+ "line": 1441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1441"
}
],
"type": {
@@ -14594,7 +14594,7 @@
}
},
{
- "id": 1182,
+ "id": 1183,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -14612,9 +14612,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1437,
+ "line": 1446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1446"
}
],
"type": {
@@ -14626,15 +14626,15 @@
"groups": [
{
"title": "Properties",
- "children": [1180, 1181, 1182]
+ "children": [1181, 1182, 1183]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -14650,7 +14650,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1337,
+ "target": 1338,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -14660,7 +14660,7 @@
}
},
{
- "id": 1183,
+ "id": 1184,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14668,14 +14668,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1250,
+ "line": 1259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1259"
}
],
"parameters": [
{
- "id": 1184,
+ "id": 1185,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14683,14 +14683,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1185,
+ "id": 1186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1186,
+ "id": 1187,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -14706,9 +14706,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1430,
+ "line": 1439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1439"
}
],
"type": {
@@ -14717,7 +14717,7 @@
}
},
{
- "id": 1187,
+ "id": 1188,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14735,9 +14735,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1432,
+ "line": 1441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1441"
}
],
"type": {
@@ -14746,7 +14746,7 @@
}
},
{
- "id": 1188,
+ "id": 1189,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -14762,9 +14762,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1444,
+ "line": 1453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1453"
}
],
"type": {
@@ -14776,15 +14776,15 @@
"groups": [
{
"title": "Properties",
- "children": [1186, 1187, 1188]
+ "children": [1187, 1188, 1189]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -14800,7 +14800,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1338,
+ "target": 1339,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -14810,7 +14810,7 @@
}
},
{
- "id": 1189,
+ "id": 1190,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14818,14 +14818,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1251,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1260"
}
],
"parameters": [
{
- "id": 1190,
+ "id": 1191,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14833,14 +14833,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1191,
+ "id": 1192,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1192,
+ "id": 1193,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -14856,9 +14856,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1430,
+ "line": 1439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1439"
}
],
"type": {
@@ -14867,7 +14867,7 @@
}
},
{
- "id": 1193,
+ "id": 1194,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14885,9 +14885,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1432,
+ "line": 1441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1441"
}
],
"type": {
@@ -14899,15 +14899,15 @@
"groups": [
{
"title": "Properties",
- "children": [1192, 1193]
+ "children": [1193, 1194]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -14923,7 +14923,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1339,
+ "target": 1340,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -14933,7 +14933,7 @@
}
},
{
- "id": 1194,
+ "id": 1195,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14941,21 +14941,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1252,
+ "line": 1261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1261"
}
],
"parameters": [
{
- "id": 1195,
+ "id": 1196,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1128,
+ "target": 1129,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -14970,7 +14970,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1155,
+ "target": 1156,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -14982,7 +14982,7 @@
]
},
{
- "id": 1289,
+ "id": 1290,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -14990,14 +14990,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1309,
+ "line": 1318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1318"
}
],
"signatures": [
{
- "id": 1290,
+ "id": 1291,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -15037,14 +15037,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1309,
+ "line": 1318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1318"
}
],
"parameters": [
{
- "id": 1291,
+ "id": 1292,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -15074,7 +15074,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1170,
+ "target": 1171,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -15086,7 +15086,7 @@
]
},
{
- "id": 1287,
+ "id": 1288,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -15094,14 +15094,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1292,
+ "line": 1301,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1301"
}
],
"signatures": [
{
- "id": 1288,
+ "id": 1289,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -15125,7 +15125,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1176
+ "target": 1177
},
{
"kind": "text",
@@ -15139,7 +15139,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1289
+ "target": 1290
},
{
"kind": "text",
@@ -15166,9 +15166,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1292,
+ "line": 1301,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1301"
}
],
"type": {
@@ -15180,7 +15180,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1165,
+ "target": 1166,
"typeArguments": [
{
"type": "typeOperator",
@@ -15215,7 +15215,7 @@
]
},
{
- "id": 1278,
+ "id": 1279,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -15223,14 +15223,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1276,
+ "line": 1285,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1285"
}
],
"signatures": [
{
- "id": 1279,
+ "id": 1280,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -15262,21 +15262,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1276,
+ "line": 1285,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1285"
}
],
"parameters": [
{
- "id": 1280,
+ "id": 1281,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1129,
+ "target": 1130,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -15291,7 +15291,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1156,
+ "target": 1157,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -15303,7 +15303,7 @@
]
},
{
- "id": 1257,
+ "id": 1258,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -15311,32 +15311,32 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1267,
+ "line": 1276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1276"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1268,
+ "line": 1277,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1277"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1269,
+ "line": 1278,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1278"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1270,
+ "line": 1279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1279"
}
],
"signatures": [
{
- "id": 1258,
+ "id": 1259,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15352,14 +15352,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1267,
+ "line": 1276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1276"
}
],
"parameters": [
{
- "id": 1259,
+ "id": 1260,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -15367,14 +15367,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1260,
+ "id": 1261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1262,
+ "id": 1263,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -15390,9 +15390,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 977,
+ "line": 986,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L977"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -15401,7 +15401,7 @@
}
},
{
- "id": 1263,
+ "id": 1264,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -15417,9 +15417,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 982,
+ "line": 991,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L991"
}
],
"type": {
@@ -15428,7 +15428,7 @@
}
},
{
- "id": 1261,
+ "id": 1262,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -15444,9 +15444,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -15458,15 +15458,15 @@
"groups": [
{
"title": "Properties",
- "children": [1262, 1263, 1261]
+ "children": [1263, 1264, 1262]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -15482,7 +15482,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15492,7 +15492,7 @@
}
},
{
- "id": 1264,
+ "id": 1265,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15500,14 +15500,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1268,
+ "line": 1277,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1277"
}
],
"parameters": [
{
- "id": 1265,
+ "id": 1266,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -15515,14 +15515,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1266,
+ "id": 1267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1268,
+ "id": 1269,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -15538,9 +15538,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 977,
+ "line": 986,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L977"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -15549,7 +15549,7 @@
}
},
{
- "id": 1269,
+ "id": 1270,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -15565,9 +15565,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 982,
+ "line": 991,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L991"
}
],
"type": {
@@ -15576,7 +15576,7 @@
}
},
{
- "id": 1267,
+ "id": 1268,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -15592,9 +15592,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -15606,15 +15606,15 @@
"groups": [
{
"title": "Properties",
- "children": [1268, 1269, 1267]
+ "children": [1269, 1270, 1268]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -15630,7 +15630,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15640,7 +15640,7 @@
}
},
{
- "id": 1270,
+ "id": 1271,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15648,14 +15648,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1269,
+ "line": 1278,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1278"
}
],
"parameters": [
{
- "id": 1271,
+ "id": 1272,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -15663,14 +15663,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1272,
+ "id": 1273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1274,
+ "id": 1275,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -15686,9 +15686,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 977,
+ "line": 986,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L977"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -15697,7 +15697,7 @@
}
},
{
- "id": 1273,
+ "id": 1274,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -15713,9 +15713,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -15724,7 +15724,7 @@
}
},
{
- "id": 1275,
+ "id": 1276,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -15732,9 +15732,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1012,
+ "line": 1021,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1012"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1021"
}
],
"type": {
@@ -15780,15 +15780,15 @@
"groups": [
{
"title": "Properties",
- "children": [1274, 1273, 1275]
+ "children": [1275, 1274, 1276]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -15804,7 +15804,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15814,7 +15814,7 @@
}
},
{
- "id": 1276,
+ "id": 1277,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15822,21 +15822,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1270,
+ "line": 1279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1279"
}
],
"parameters": [
{
- "id": 1277,
+ "id": 1278,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1140,
+ "target": 1141,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -15851,7 +15851,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15866,31 +15866,31 @@
"groups": [
{
"title": "Properties",
- "children": [1292]
+ "children": [1293]
},
{
"title": "Methods",
- "children": [1196, 1281, 1176, 1289, 1287, 1278, 1257]
+ "children": [1197, 1282, 1177, 1290, 1288, 1279, 1258]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1239,
+ "line": 1248,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1248"
}
]
},
{
- "id": 1375,
+ "id": 1376,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1378,
+ "id": 1379,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -15900,9 +15900,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1573,
+ "line": 1582,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1573"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1582"
}
],
"type": {
@@ -15911,7 +15911,7 @@
}
},
{
- "id": 1377,
+ "id": 1378,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -15919,9 +15919,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1572,
+ "line": 1581,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1572"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1581"
}
],
"type": {
@@ -15933,7 +15933,7 @@
}
},
{
- "id": 1379,
+ "id": 1380,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -15943,9 +15943,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1574,
+ "line": 1583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1574"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1583"
}
],
"type": {
@@ -15954,7 +15954,7 @@
}
},
{
- "id": 1376,
+ "id": 1377,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -15962,9 +15962,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1571,
+ "line": 1580,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1580"
}
],
"type": {
@@ -15989,20 +15989,20 @@
"groups": [
{
"title": "Properties",
- "children": [1378, 1377, 1379, 1376]
+ "children": [1379, 1378, 1380, 1377]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1570,
+ "line": 1579,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1570"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1579"
}
],
"indexSignatures": [
{
- "id": 1380,
+ "id": 1381,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16010,14 +16010,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1575,
+ "line": 1584,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1575"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1584"
}
],
"parameters": [
{
- "id": 1381,
+ "id": 1382,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16036,7 +16036,7 @@
]
},
{
- "id": 1355,
+ "id": 1356,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -16062,7 +16062,7 @@
},
"children": [
{
- "id": 1371,
+ "id": 1372,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -16072,14 +16072,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1532,
+ "line": 1541,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1532"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1541"
}
],
"type": {
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -16090,7 +16090,7 @@
}
},
{
- "id": 1363,
+ "id": 1364,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -16108,9 +16108,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1561,
+ "line": 1570,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1570"
}
],
"type": {
@@ -16127,7 +16127,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 837,
+ "target": 838,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
@@ -16136,7 +16136,7 @@
}
},
{
- "id": 1361,
+ "id": 1362,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -16146,20 +16146,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1553,
+ "line": 1562,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1553"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1562"
}
],
"type": {
"type": "reference",
- "target": 864,
+ "target": 865,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1367,
+ "id": 1368,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -16169,9 +16169,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1528,
+ "line": 1537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1528"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1537"
}
],
"type": {
@@ -16197,7 +16197,7 @@
}
},
{
- "id": 1356,
+ "id": 1357,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -16207,9 +16207,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1546,
+ "line": 1555,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1546"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1555"
}
],
"type": {
@@ -16218,7 +16218,7 @@
}
},
{
- "id": 1368,
+ "id": 1369,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -16228,9 +16228,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1529,
+ "line": 1538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1529"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1538"
}
],
"type": {
@@ -16244,7 +16244,7 @@
}
},
{
- "id": 1369,
+ "id": 1370,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -16254,9 +16254,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1530,
+ "line": 1539,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1539"
}
],
"type": {
@@ -16270,7 +16270,7 @@
}
},
{
- "id": 1358,
+ "id": 1359,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -16280,9 +16280,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1548,
+ "line": 1557,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1548"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1557"
}
],
"type": {
@@ -16291,7 +16291,7 @@
}
},
{
- "id": 1365,
+ "id": 1366,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -16301,9 +16301,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1526,
+ "line": 1535,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1526"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1535"
}
],
"type": {
@@ -16317,7 +16317,7 @@
}
},
{
- "id": 1359,
+ "id": 1360,
"name": "jti",
"variant": "declaration",
"kind": 1024,
@@ -16327,9 +16327,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1551,
+ "line": 1560,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1551"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1560"
}
],
"type": {
@@ -16338,7 +16338,7 @@
}
},
{
- "id": 1360,
+ "id": 1361,
"name": "nbf",
"variant": "declaration",
"kind": 1024,
@@ -16348,9 +16348,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1552,
+ "line": 1561,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1552"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1561"
}
],
"type": {
@@ -16359,7 +16359,7 @@
}
},
{
- "id": 1357,
+ "id": 1358,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -16369,9 +16369,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1547,
+ "line": 1556,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1547"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1556"
}
],
"type": {
@@ -16380,7 +16380,7 @@
}
},
{
- "id": 1364,
+ "id": 1365,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -16390,9 +16390,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1564,
+ "line": 1573,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1573"
}
],
"type": {
@@ -16401,7 +16401,7 @@
}
},
{
- "id": 1370,
+ "id": 1371,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -16411,9 +16411,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1531,
+ "line": 1540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1531"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1540"
}
],
"type": {
@@ -16427,7 +16427,7 @@
}
},
{
- "id": 1372,
+ "id": 1373,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -16437,9 +16437,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1533,
+ "line": 1542,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1533"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1542"
}
],
"type": {
@@ -16453,7 +16453,7 @@
}
},
{
- "id": 1366,
+ "id": 1367,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -16463,9 +16463,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1527,
+ "line": 1536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1536"
}
],
"type": {
@@ -16479,7 +16479,7 @@
}
},
{
- "id": 1362,
+ "id": 1363,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -16489,14 +16489,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1554,
+ "line": 1563,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1554"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1563"
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -16506,22 +16506,22 @@
{
"title": "Properties",
"children": [
- 1371, 1363, 1361, 1367, 1356, 1368, 1369, 1358, 1365, 1359, 1360, 1357, 1364, 1370,
- 1372, 1366, 1362
+ 1372, 1364, 1362, 1368, 1357, 1369, 1370, 1359, 1366, 1360, 1361, 1358, 1365, 1371,
+ 1373, 1367, 1363
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1544,
+ "line": 1553,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1544"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1553"
}
],
"indexSignatures": [
{
- "id": 1373,
+ "id": 1374,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16529,14 +16529,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1567,
+ "line": 1576,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1576"
}
],
"parameters": [
{
- "id": 1374,
+ "id": 1375,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16556,21 +16556,21 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1345,
+ "target": 1346,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 826,
+ "id": 827,
"name": "Session",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 829,
+ "id": 830,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -16586,9 +16586,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 297,
+ "line": 306,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L306"
}
],
"type": {
@@ -16597,7 +16597,7 @@
}
},
{
- "id": 832,
+ "id": 833,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -16615,9 +16615,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 309,
+ "line": 318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L318"
}
],
"type": {
@@ -16626,7 +16626,7 @@
}
},
{
- "id": 831,
+ "id": 832,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -16642,9 +16642,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 305,
+ "line": 314,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L314"
}
],
"type": {
@@ -16653,7 +16653,7 @@
}
},
{
- "id": 828,
+ "id": 829,
"name": "provider_refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -16671,9 +16671,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 293,
+ "line": 302,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L302"
}
],
"type": {
@@ -16691,7 +16691,7 @@
}
},
{
- "id": 827,
+ "id": 828,
"name": "provider_token",
"variant": "declaration",
"kind": 1024,
@@ -16709,9 +16709,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 288,
+ "line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L297"
}
],
"type": {
@@ -16729,7 +16729,7 @@
}
},
{
- "id": 830,
+ "id": 831,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -16745,9 +16745,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 301,
+ "line": 310,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L310"
}
],
"type": {
@@ -16756,7 +16756,7 @@
}
},
{
- "id": 833,
+ "id": 834,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -16764,9 +16764,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 310,
+ "line": 319,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L319"
}
],
"type": {
@@ -16775,7 +16775,7 @@
}
},
{
- "id": 834,
+ "id": 835,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -16791,14 +16791,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 315,
+ "line": 324,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L324"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -16807,27 +16807,27 @@
"groups": [
{
"title": "Properties",
- "children": [829, 832, 831, 828, 827, 830, 833, 834]
+ "children": [830, 833, 832, 829, 828, 831, 834, 835]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 284,
+ "line": 293,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L284"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L293"
}
]
},
{
- "id": 918,
+ "id": 919,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 920,
+ "id": 921,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -16843,15 +16843,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 579,
+ "line": 588,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L588"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 921,
+ "id": 922,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16859,14 +16859,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 579,
+ "line": 588,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L588"
}
],
"signatures": [
{
- "id": 922,
+ "id": 923,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16874,14 +16874,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 579,
+ "line": 588,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L588"
}
],
"parameters": [
{
- "id": 923,
+ "id": 924,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -16894,7 +16894,7 @@
}
},
{
- "id": 924,
+ "id": 925,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -16908,7 +16908,7 @@
},
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -16926,7 +16926,7 @@
}
},
{
- "id": 919,
+ "id": 920,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16942,9 +16942,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 575,
+ "line": 584,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L575"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L584"
}
],
"type": {
@@ -16962,7 +16962,7 @@
}
},
{
- "id": 925,
+ "id": 926,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -16978,15 +16978,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 583,
+ "line": 592,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L592"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 926,
+ "id": 927,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16994,14 +16994,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 583,
+ "line": 592,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L592"
}
],
"signatures": [
{
- "id": 927,
+ "id": 928,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17009,9 +17009,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 583,
+ "line": 592,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L592"
}
],
"type": {
@@ -17027,27 +17027,27 @@
"groups": [
{
"title": "Properties",
- "children": [920, 919, 925]
+ "children": [921, 920, 926]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 569,
+ "line": 578,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L569"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L578"
}
]
},
{
- "id": 872,
+ "id": 873,
"name": "User",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 883,
+ "id": 884,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -17057,9 +17057,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 444,
+ "line": 453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L453"
}
],
"type": {
@@ -17068,7 +17068,7 @@
}
},
{
- "id": 874,
+ "id": 875,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -17076,20 +17076,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 435,
+ "line": 444,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L444"
}
],
"type": {
"type": "reference",
- "target": 864,
+ "target": 865,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 876,
+ "id": 877,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -17097,9 +17097,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 437,
+ "line": 446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L446"
}
],
"type": {
@@ -17108,7 +17108,7 @@
}
},
{
- "id": 898,
+ "id": 899,
"name": "banned_until",
"variant": "declaration",
"kind": 1024,
@@ -17118,9 +17118,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 459,
+ "line": 468,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L468"
}
],
"type": {
@@ -17129,7 +17129,7 @@
}
},
{
- "id": 877,
+ "id": 878,
"name": "confirmation_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -17139,9 +17139,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 438,
+ "line": 447,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L438"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L447"
}
],
"type": {
@@ -17150,7 +17150,7 @@
}
},
{
- "id": 887,
+ "id": 888,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -17160,9 +17160,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 448,
+ "line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L448"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L457"
}
],
"type": {
@@ -17171,7 +17171,7 @@
}
},
{
- "id": 886,
+ "id": 887,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -17179,9 +17179,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 447,
+ "line": 456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L456"
}
],
"type": {
@@ -17190,7 +17190,7 @@
}
},
{
- "id": 897,
+ "id": 898,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -17200,9 +17200,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 458,
+ "line": 467,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L458"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L467"
}
],
"type": {
@@ -17211,7 +17211,7 @@
}
},
{
- "id": 884,
+ "id": 885,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -17221,9 +17221,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 445,
+ "line": 454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L454"
}
],
"type": {
@@ -17232,7 +17232,7 @@
}
},
{
- "id": 879,
+ "id": 880,
"name": "email_change_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -17242,9 +17242,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 440,
+ "line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L449"
}
],
"type": {
@@ -17253,7 +17253,7 @@
}
},
{
- "id": 888,
+ "id": 889,
"name": "email_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -17263,9 +17263,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 449,
+ "line": 458,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L458"
}
],
"type": {
@@ -17274,7 +17274,7 @@
}
},
{
- "id": 896,
+ "id": 897,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -17284,9 +17284,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 457,
+ "line": 466,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L466"
}
],
"type": {
@@ -17296,7 +17296,7 @@
"types": [
{
"type": "reference",
- "target": 853,
+ "target": 854,
"typeArguments": [
{
"type": "union",
@@ -17325,7 +17325,7 @@
},
{
"type": "reference",
- "target": 853,
+ "target": 854,
"typeArguments": [
{
"type": "union",
@@ -17357,7 +17357,7 @@
}
},
{
- "id": 873,
+ "id": 874,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17365,9 +17365,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 434,
+ "line": 443,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L443"
}
],
"type": {
@@ -17376,7 +17376,7 @@
}
},
{
- "id": 893,
+ "id": 894,
"name": "identities",
"variant": "declaration",
"kind": 1024,
@@ -17386,23 +17386,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 454,
+ "line": 463,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L463"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 882,
+ "id": 883,
"name": "invited_at",
"variant": "declaration",
"kind": 1024,
@@ -17412,9 +17412,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 443,
+ "line": 452,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L443"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L452"
}
],
"type": {
@@ -17423,7 +17423,7 @@
}
},
{
- "id": 894,
+ "id": 895,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -17433,9 +17433,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 455,
+ "line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L464"
}
],
"type": {
@@ -17444,7 +17444,7 @@
}
},
{
- "id": 895,
+ "id": 896,
"name": "is_sso_user",
"variant": "declaration",
"kind": 1024,
@@ -17454,9 +17454,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 456,
+ "line": 465,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L465"
}
],
"type": {
@@ -17465,7 +17465,7 @@
}
},
{
- "id": 890,
+ "id": 891,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -17475,9 +17475,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 451,
+ "line": 460,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L460"
}
],
"type": {
@@ -17486,7 +17486,7 @@
}
},
{
- "id": 880,
+ "id": 881,
"name": "new_email",
"variant": "declaration",
"kind": 1024,
@@ -17496,9 +17496,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 441,
+ "line": 450,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L450"
}
],
"type": {
@@ -17507,7 +17507,7 @@
}
},
{
- "id": 881,
+ "id": 882,
"name": "new_phone",
"variant": "declaration",
"kind": 1024,
@@ -17517,9 +17517,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 442,
+ "line": 451,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L451"
}
],
"type": {
@@ -17528,7 +17528,7 @@
}
},
{
- "id": 885,
+ "id": 886,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -17538,9 +17538,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 446,
+ "line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L455"
}
],
"type": {
@@ -17549,7 +17549,7 @@
}
},
{
- "id": 889,
+ "id": 890,
"name": "phone_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -17559,9 +17559,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 450,
+ "line": 459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L459"
}
],
"type": {
@@ -17570,7 +17570,7 @@
}
},
{
- "id": 878,
+ "id": 879,
"name": "recovery_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -17580,9 +17580,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 439,
+ "line": 448,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L448"
}
],
"type": {
@@ -17591,7 +17591,7 @@
}
},
{
- "id": 891,
+ "id": 892,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -17601,9 +17601,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 452,
+ "line": 461,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L461"
}
],
"type": {
@@ -17612,7 +17612,7 @@
}
},
{
- "id": 892,
+ "id": 893,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -17622,9 +17622,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 453,
+ "line": 462,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L462"
}
],
"type": {
@@ -17633,7 +17633,7 @@
}
},
{
- "id": 875,
+ "id": 876,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -17641,14 +17641,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 436,
+ "line": 445,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L445"
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -17658,29 +17658,29 @@
{
"title": "Properties",
"children": [
- 883, 874, 876, 898, 877, 887, 886, 897, 884, 879, 888, 896, 873, 893, 882, 894, 895,
- 890, 880, 881, 885, 889, 878, 891, 892, 875
+ 884, 875, 877, 899, 878, 888, 887, 898, 885, 880, 889, 897, 874, 894, 883, 895, 896,
+ 891, 881, 882, 886, 890, 879, 892, 893, 876
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 433,
+ "line": 442,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L433"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L442"
}
]
},
{
- "id": 864,
+ "id": 865,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 865,
+ "id": 866,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -17698,9 +17698,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 421,
+ "line": 430,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L430"
}
],
"type": {
@@ -17709,7 +17709,7 @@
}
},
{
- "id": 866,
+ "id": 867,
"name": "providers",
"variant": "declaration",
"kind": 1024,
@@ -17727,9 +17727,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 425,
+ "line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L425"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L434"
}
],
"type": {
@@ -17744,20 +17744,20 @@
"groups": [
{
"title": "Properties",
- "children": [865, 866]
+ "children": [866, 867]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 417,
+ "line": 426,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L417"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L426"
}
],
"indexSignatures": [
{
- "id": 867,
+ "id": 868,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17765,14 +17765,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 426,
+ "line": 435,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L435"
}
],
"parameters": [
{
- "id": 868,
+ "id": 869,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17791,14 +17791,14 @@
]
},
{
- "id": 899,
+ "id": 900,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 904,
+ "id": 905,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -17832,9 +17832,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 491,
+ "line": 500,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L500"
}
],
"type": {
@@ -17843,7 +17843,7 @@
}
},
{
- "id": 900,
+ "id": 901,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -17861,9 +17861,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 466,
+ "line": 475,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L466"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L475"
}
],
"type": {
@@ -17872,7 +17872,7 @@
}
},
{
- "id": 903,
+ "id": 904,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -17890,9 +17890,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 483,
+ "line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L492"
}
],
"type": {
@@ -17901,7 +17901,7 @@
}
},
{
- "id": 902,
+ "id": 903,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -17919,9 +17919,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 476,
+ "line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -17930,7 +17930,7 @@
}
},
{
- "id": 901,
+ "id": 902,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -17948,9 +17948,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 471,
+ "line": 480,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L480"
}
],
"type": {
@@ -17962,27 +17962,27 @@
"groups": [
{
"title": "Properties",
- "children": [904, 900, 903, 902, 901]
+ "children": [905, 901, 904, 903, 902]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 462,
+ "line": 471,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L462"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L471"
}
]
},
{
- "id": 840,
+ "id": 841,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 849,
+ "id": 850,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -17992,9 +17992,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 366,
+ "line": 375,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L366"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L375"
}
],
"type": {
@@ -18003,7 +18003,7 @@
}
},
{
- "id": 841,
+ "id": 842,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -18011,9 +18011,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 359,
+ "line": 368,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L368"
}
],
"type": {
@@ -18022,7 +18022,7 @@
}
},
{
- "id": 843,
+ "id": 844,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -18032,15 +18032,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 361,
+ "line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L370"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 844,
+ "id": 845,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18048,14 +18048,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 361,
+ "line": 370,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L370"
}
],
"indexSignatures": [
{
- "id": 845,
+ "id": 846,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18063,14 +18063,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 362,
+ "line": 371,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L362"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L371"
}
],
"parameters": [
{
- "id": 846,
+ "id": 847,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18091,7 +18091,7 @@
}
},
{
- "id": 847,
+ "id": 848,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -18099,9 +18099,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 364,
+ "line": 373,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L364"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L373"
}
],
"type": {
@@ -18110,7 +18110,7 @@
}
},
{
- "id": 850,
+ "id": 851,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -18120,9 +18120,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 367,
+ "line": 376,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L367"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L376"
}
],
"type": {
@@ -18131,7 +18131,7 @@
}
},
{
- "id": 848,
+ "id": 849,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -18139,9 +18139,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 365,
+ "line": 374,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L365"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L374"
}
],
"type": {
@@ -18150,7 +18150,7 @@
}
},
{
- "id": 851,
+ "id": 852,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -18160,9 +18160,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 368,
+ "line": 377,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L368"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L377"
}
],
"type": {
@@ -18171,7 +18171,7 @@
}
},
{
- "id": 842,
+ "id": 843,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -18179,9 +18179,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 360,
+ "line": 369,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L369"
}
],
"type": {
@@ -18193,20 +18193,20 @@
"groups": [
{
"title": "Properties",
- "children": [849, 841, 843, 847, 850, 848, 851, 842]
+ "children": [850, 842, 844, 848, 851, 849, 852, 843]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 358,
+ "line": 367,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L367"
}
]
},
{
- "id": 869,
+ "id": 870,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -18214,14 +18214,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 429,
+ "line": 438,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L438"
}
],
"indexSignatures": [
{
- "id": 870,
+ "id": 871,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18229,14 +18229,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 430,
+ "line": 439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L439"
}
],
"parameters": [
{
- "id": 871,
+ "id": 872,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18255,14 +18255,14 @@
]
},
{
- "id": 1048,
+ "id": 1049,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1049,
+ "id": 1050,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -18278,9 +18278,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 798,
+ "line": 807,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L798"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L807"
}
],
"type": {
@@ -18289,7 +18289,7 @@
}
},
{
- "id": 1052,
+ "id": 1053,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -18299,22 +18299,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 803,
+ "line": 812,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L812"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1053,
+ "id": 1054,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1055,
+ "id": 1056,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -18338,9 +18338,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 811,
+ "line": 820,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L811"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L820"
}
],
"type": {
@@ -18349,7 +18349,7 @@
}
},
{
- "id": 1054,
+ "id": 1055,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -18367,9 +18367,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 805,
+ "line": 814,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L805"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L814"
}
],
"type": {
@@ -18381,22 +18381,22 @@
"groups": [
{
"title": "Properties",
- "children": [1055, 1054]
+ "children": [1056, 1055]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 803,
+ "line": 812,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L812"
}
]
}
}
},
{
- "id": 1050,
+ "id": 1051,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -18412,9 +18412,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 800,
+ "line": 809,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L800"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L809"
}
],
"type": {
@@ -18423,7 +18423,7 @@
}
},
{
- "id": 1051,
+ "id": 1052,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18439,14 +18439,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 802,
+ "line": 811,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L802"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L811"
}
],
"type": {
"type": "reference",
- "target": 1060,
+ "target": 1061,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -18455,27 +18455,27 @@
"groups": [
{
"title": "Properties",
- "children": [1049, 1052, 1050, 1051]
+ "children": [1050, 1053, 1051, 1052]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 796,
+ "line": 805,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L796"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L805"
}
]
},
{
- "id": 1040,
+ "id": 1041,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1044,
+ "id": 1045,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -18485,22 +18485,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 784,
+ "line": 793,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L784"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L793"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1045,
+ "id": 1046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1047,
+ "id": 1048,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -18524,9 +18524,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 793,
+ "line": 802,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L793"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L802"
}
],
"type": {
@@ -18535,7 +18535,7 @@
}
},
{
- "id": 1046,
+ "id": 1047,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -18553,9 +18553,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 786,
+ "line": 795,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L795"
}
],
"type": {
@@ -18567,22 +18567,22 @@
"groups": [
{
"title": "Properties",
- "children": [1047, 1046]
+ "children": [1048, 1047]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 784,
+ "line": 793,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L784"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L793"
}
]
}
}
},
{
- "id": 1041,
+ "id": 1042,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -18598,9 +18598,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 779,
+ "line": 788,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L779"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L788"
}
],
"type": {
@@ -18609,7 +18609,7 @@
}
},
{
- "id": 1042,
+ "id": 1043,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -18625,9 +18625,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 781,
+ "line": 790,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L790"
}
],
"type": {
@@ -18636,7 +18636,7 @@
}
},
{
- "id": 1043,
+ "id": 1044,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18652,14 +18652,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 783,
+ "line": 792,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L783"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L792"
}
],
"type": {
"type": "reference",
- "target": 1059,
+ "target": 1060,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -18668,27 +18668,27 @@
"groups": [
{
"title": "Properties",
- "children": [1044, 1041, 1042, 1043]
+ "children": [1045, 1042, 1043, 1044]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 777,
+ "line": 786,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L786"
}
]
},
{
- "id": 1056,
+ "id": 1057,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1057,
+ "id": 1058,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -18704,9 +18704,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 817,
+ "line": 826,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L826"
}
],
"type": {
@@ -18715,7 +18715,7 @@
}
},
{
- "id": 1058,
+ "id": 1059,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18731,14 +18731,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 820,
+ "line": 829,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L829"
}
],
"type": {
"type": "reference",
- "target": 1060,
+ "target": 1061,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -18747,20 +18747,20 @@
"groups": [
{
"title": "Properties",
- "children": [1057, 1058]
+ "children": [1058, 1059]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 815,
+ "line": 824,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L815"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L824"
}
]
},
{
- "id": 835,
+ "id": 836,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -18768,9 +18768,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 333,
+ "line": 342,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L342"
}
],
"type": {
@@ -18806,7 +18806,7 @@
{
"type": "reflection",
"declaration": {
- "id": 836,
+ "id": 837,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18814,9 +18814,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 333,
+ "line": 342,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L342"
}
]
}
@@ -18837,7 +18837,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 47,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L47"
}
],
"type": {
@@ -18887,7 +18887,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 45,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L45"
}
],
"type": {
@@ -18896,7 +18896,7 @@
}
},
{
- "id": 1169,
+ "id": 1170,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -18904,9 +18904,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1209,
+ "line": 1218,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1218"
}
],
"type": {
@@ -18924,7 +18924,7 @@
}
},
{
- "id": 964,
+ "id": 965,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -18932,9 +18932,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 658,
+ "line": 667,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L658"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L667"
}
],
"type": {
@@ -18952,7 +18952,7 @@
}
},
{
- "id": 1296,
+ "id": 1297,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -18969,22 +18969,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1327,
+ "line": 1336,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1336"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1297,
+ "id": 1298,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1298,
+ "id": 1299,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -19000,9 +19000,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1329,
+ "line": 1338,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1329"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1338"
}
],
"type": {
@@ -19011,7 +19011,7 @@
}
},
{
- "id": 1299,
+ "id": 1300,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -19027,9 +19027,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1332,
+ "line": 1341,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1332"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1341"
}
],
"type": {
@@ -19041,22 +19041,22 @@
"groups": [
{
"title": "Properties",
- "children": [1298, 1299]
+ "children": [1299, 1300]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1327,
+ "line": 1336,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1336"
}
]
}
}
},
{
- "id": 1293,
+ "id": 1294,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19073,26 +19073,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1320,
+ "line": 1329,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1320"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1329"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1294,
+ "id": 1295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1295,
+ "id": 1296,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -19108,9 +19108,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1322,
+ "line": 1331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1331"
}
],
"type": {
@@ -19122,15 +19122,15 @@
"groups": [
{
"title": "Properties",
- "children": [1295]
+ "children": [1296]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1320,
+ "line": 1329,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1320"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1329"
}
]
}
@@ -19141,7 +19141,7 @@
}
},
{
- "id": 1303,
+ "id": 1304,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -19158,22 +19158,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1346,
+ "line": 1355,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1355"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1304,
+ "id": 1305,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1305,
+ "id": 1306,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -19189,9 +19189,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1348,
+ "line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1348"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -19203,22 +19203,22 @@
"groups": [
{
"title": "Properties",
- "children": [1305]
+ "children": [1306]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1346,
+ "line": 1355,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1355"
}
]
}
}
},
{
- "id": 1300,
+ "id": 1301,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19235,26 +19235,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1338,
+ "line": 1347,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1347"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1301,
+ "id": 1302,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1302,
+ "id": 1303,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -19270,16 +19270,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1340,
+ "line": 1349,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1340"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1349"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 853,
+ "target": 854,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -19289,15 +19289,15 @@
"groups": [
{
"title": "Properties",
- "children": [1302]
+ "children": [1303]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1338,
+ "line": 1347,
"character": 60,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1347"
}
]
}
@@ -19308,7 +19308,7 @@
}
},
{
- "id": 1160,
+ "id": 1161,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19316,18 +19316,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1139,
+ "line": 1148,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1148"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19368,7 +19368,7 @@
}
},
{
- "id": 1164,
+ "id": 1165,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19376,9 +19376,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1191,
+ "line": 1200,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1191"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1200"
}
],
"type": {
@@ -19386,19 +19386,19 @@
"types": [
{
"type": "reference",
- "target": 1159,
+ "target": 1160,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1160,
+ "target": 1161,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1161,
+ "target": 1162,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -19406,7 +19406,7 @@
}
},
{
- "id": 1159,
+ "id": 1160,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19414,18 +19414,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1131,
+ "line": 1140,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1140"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19466,7 +19466,7 @@
}
},
{
- "id": 1161,
+ "id": 1162,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19495,18 +19495,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1160,
+ "line": 1169,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1160"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1169"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19547,7 +19547,7 @@
}
},
{
- "id": 1162,
+ "id": 1163,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -19563,14 +19563,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1180,
+ "line": 1189,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1189"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19607,7 +19607,7 @@
}
},
{
- "id": 1163,
+ "id": 1164,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19623,18 +19623,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1188,
+ "line": 1197,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1197"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1162,
+ "target": 1163,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -19644,7 +19644,7 @@
}
},
{
- "id": 1338,
+ "id": 1339,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19652,18 +19652,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1502,
+ "line": 1511,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1511"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19704,7 +19704,7 @@
}
},
{
- "id": 1155,
+ "id": 1156,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19712,9 +19712,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1106,
+ "line": 1115,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1115"
}
],
"type": {
@@ -19722,19 +19722,19 @@
"types": [
{
"type": "reference",
- "target": 1337,
+ "target": 1338,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1338,
+ "target": 1339,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1339,
+ "target": 1340,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -19742,7 +19742,7 @@
}
},
{
- "id": 1337,
+ "id": 1338,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19750,18 +19750,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1493,
+ "line": 1502,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1502"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19802,7 +19802,7 @@
}
},
{
- "id": 1339,
+ "id": 1340,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19831,18 +19831,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1515,
+ "line": 1524,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1515"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1524"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19883,7 +19883,7 @@
}
},
{
- "id": 1170,
+ "id": 1171,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19891,26 +19891,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1211,
+ "line": 1220,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1220"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1171,
+ "id": 1172,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1174,
+ "id": 1175,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -19926,9 +19926,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1232,
+ "line": 1241,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1232"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1241"
}
],
"type": {
@@ -19938,7 +19938,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 837,
+ "target": 838,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
@@ -19954,7 +19954,7 @@
}
},
{
- "id": 1172,
+ "id": 1173,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -19970,9 +19970,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1213,
+ "line": 1222,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1222"
}
],
"type": {
@@ -19980,7 +19980,7 @@
"types": [
{
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -19992,7 +19992,7 @@
}
},
{
- "id": 1173,
+ "id": 1174,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -20012,7 +20012,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1196
+ "target": 1197
}
]
}
@@ -20021,9 +20021,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1221,
+ "line": 1230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1221"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1230"
}
],
"type": {
@@ -20031,7 +20031,7 @@
"types": [
{
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -20046,15 +20046,15 @@
"groups": [
{
"title": "Properties",
- "children": [1174, 1172, 1173]
+ "children": [1175, 1173, 1174]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1211,
+ "line": 1220,
"character": 74,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1220"
}
]
}
@@ -20065,7 +20065,7 @@
}
},
{
- "id": 1165,
+ "id": 1166,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20081,14 +20081,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1197,
+ "line": 1206,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1206"
}
],
"typeParameters": [
{
- "id": 1168,
+ "id": 1169,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -20123,7 +20123,7 @@
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "intersection",
@@ -20131,14 +20131,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1166,
+ "id": 1167,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1167,
+ "id": 1168,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -20154,20 +20154,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1201,
+ "line": 1210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1210"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "reference",
- "target": 853,
+ "target": 854,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -20181,15 +20181,15 @@
"groups": [
{
"title": "Properties",
- "children": [1167]
+ "children": [1168]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1199,
+ "line": 1208,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1208"
}
]
}
@@ -20205,7 +20205,7 @@
},
"objectType": {
"type": "reference",
- "target": 1168,
+ "target": 1169,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -20215,11 +20215,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "reference",
- "target": 853,
+ "target": 854,
"typeArguments": [
{
"type": "reference",
@@ -20253,7 +20253,7 @@
}
},
{
- "id": 1156,
+ "id": 1157,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20261,26 +20261,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1111,
+ "line": 1120,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1120"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1157,
+ "id": 1158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1158,
+ "id": 1159,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -20296,9 +20296,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1113,
+ "line": 1122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1122"
}
],
"type": {
@@ -20310,15 +20310,15 @@
"groups": [
{
"title": "Properties",
- "children": [1158]
+ "children": [1159]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1111,
+ "line": 1120,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1120"
}
]
}
@@ -20329,7 +20329,7 @@
}
},
{
- "id": 1154,
+ "id": 1155,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20345,18 +20345,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1104,
+ "line": 1113,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1113"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1147,
+ "target": 1148,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -20366,7 +20366,7 @@
}
},
{
- "id": 1147,
+ "id": 1148,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -20382,22 +20382,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1083,
+ "line": 1092,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1083"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1092"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1148,
+ "id": 1149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1149,
+ "id": 1150,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -20413,9 +20413,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1085,
+ "line": 1094,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1085"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1094"
}
],
"type": {
@@ -20424,7 +20424,7 @@
}
},
{
- "id": 1151,
+ "id": 1152,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -20440,9 +20440,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1091,
+ "line": 1100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1091"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1100"
}
],
"type": {
@@ -20451,7 +20451,7 @@
}
},
{
- "id": 1152,
+ "id": 1153,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -20467,9 +20467,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1094,
+ "line": 1103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1094"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1103"
}
],
"type": {
@@ -20478,7 +20478,7 @@
}
},
{
- "id": 1150,
+ "id": 1151,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -20502,9 +20502,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1088,
+ "line": 1097,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1088"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1097"
}
],
"type": {
@@ -20513,7 +20513,7 @@
}
},
{
- "id": 1153,
+ "id": 1154,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20529,14 +20529,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1097,
+ "line": 1106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1097"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1106"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -20545,22 +20545,22 @@
"groups": [
{
"title": "Properties",
- "children": [1149, 1151, 1152, 1150, 1153]
+ "children": [1150, 1152, 1153, 1151, 1154]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1083,
+ "line": 1092,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1083"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1092"
}
]
}
}
},
{
- "id": 1474,
+ "id": 1475,
"name": "AuthOAuthAuthorizationDetailsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20587,27 +20587,27 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1835,
+ "line": 1844,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1835"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1844"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "union",
"types": [
{
"type": "reference",
- "target": 1461,
+ "target": 1462,
"name": "OAuthAuthorizationDetails",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1471,
+ "target": 1472,
"name": "OAuthRedirect",
"package": "@supabase/auth-js"
}
@@ -20619,7 +20619,7 @@
}
},
{
- "id": 1475,
+ "id": 1476,
"name": "AuthOAuthConsentResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20635,18 +20635,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1843,
+ "line": 1852,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1843"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1852"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1471,
+ "target": 1472,
"name": "OAuthRedirect",
"package": "@supabase/auth-js"
}
@@ -20656,7 +20656,7 @@
}
},
{
- "id": 1481,
+ "id": 1482,
"name": "AuthOAuthGrantsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20672,20 +20672,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1862,
+ "line": 1871,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1862"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1871"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "array",
"elementType": {
"type": "reference",
- "target": 1476,
+ "target": 1477,
"name": "OAuthGrant",
"package": "@supabase/auth-js"
}
@@ -20696,7 +20696,7 @@
}
},
{
- "id": 1482,
+ "id": 1483,
"name": "AuthOAuthRevokeGrantResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20712,19 +20712,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1868,
+ "line": 1877,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1868"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1877"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1483,
+ "id": 1484,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20732,9 +20732,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1868,
+ "line": 1877,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1868"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1877"
}
]
}
@@ -20745,7 +20745,7 @@
}
},
{
- "id": 793,
+ "id": 794,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20766,26 +20766,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 236,
+ "line": 245,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L245"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 794,
+ "id": 795,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 797,
+ "id": 798,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -20795,9 +20795,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 239,
+ "line": 248,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L248"
}
],
"type": {
@@ -20815,7 +20815,7 @@
}
},
{
- "id": 796,
+ "id": 797,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20823,9 +20823,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 238,
+ "line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L247"
}
],
"type": {
@@ -20834,7 +20834,7 @@
}
},
{
- "id": 795,
+ "id": 796,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20842,9 +20842,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 237,
+ "line": 246,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L246"
}
],
"type": {
@@ -20856,15 +20856,15 @@
"groups": [
{
"title": "Properties",
- "children": [797, 796, 795]
+ "children": [798, 797, 796]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 236,
+ "line": 245,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L245"
}
]
}
@@ -20875,7 +20875,7 @@
}
},
{
- "id": 784,
+ "id": 785,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20883,26 +20883,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 220,
+ "line": 229,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L229"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 785,
+ "id": 786,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 787,
+ "id": 788,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20910,9 +20910,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 222,
+ "line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L231"
}
],
"type": {
@@ -20920,7 +20920,7 @@
"types": [
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -20932,7 +20932,7 @@
}
},
{
- "id": 786,
+ "id": 787,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20940,9 +20940,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 221,
+ "line": 230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L230"
}
],
"type": {
@@ -20950,7 +20950,7 @@
"types": [
{
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -20965,15 +20965,15 @@
"groups": [
{
"title": "Properties",
- "children": [787, 786]
+ "children": [788, 787]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 220,
+ "line": 229,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L229"
}
]
}
@@ -20984,7 +20984,7 @@
}
},
{
- "id": 788,
+ "id": 789,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -20992,26 +20992,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 225,
+ "line": 234,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L234"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 789,
+ "id": 790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 791,
+ "id": 792,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -21019,9 +21019,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 227,
+ "line": 236,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L236"
}
],
"type": {
@@ -21029,7 +21029,7 @@
"types": [
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -21041,7 +21041,7 @@
}
},
{
- "id": 790,
+ "id": 791,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -21049,9 +21049,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 226,
+ "line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L235"
}
],
"type": {
@@ -21059,7 +21059,7 @@
"types": [
{
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -21071,7 +21071,7 @@
}
},
{
- "id": 792,
+ "id": 793,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -21081,9 +21081,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 228,
+ "line": 237,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L237"
}
],
"type": {
@@ -21091,7 +21091,7 @@
"types": [
{
"type": "reference",
- "target": 758,
+ "target": 759,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -21106,15 +21106,15 @@
"groups": [
{
"title": "Properties",
- "children": [791, 790, 792]
+ "children": [792, 791, 793]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 225,
+ "line": 234,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L234"
}
]
}
@@ -21125,7 +21125,7 @@
}
},
{
- "id": 798,
+ "id": 799,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -21133,26 +21133,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 242,
+ "line": 251,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L251"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 799,
+ "id": 800,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 801,
+ "id": 802,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -21160,20 +21160,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 244,
+ "line": 253,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L253"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 800,
+ "id": 801,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -21181,14 +21181,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 243,
+ "line": 252,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L252"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -21197,15 +21197,15 @@
"groups": [
{
"title": "Properties",
- "children": [801, 800]
+ "children": [802, 801]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 242,
+ "line": 251,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L251"
}
]
}
@@ -21216,7 +21216,7 @@
}
},
{
- "id": 802,
+ "id": 803,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -21224,26 +21224,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 247,
+ "line": 256,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L256"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 803,
+ "id": 804,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 805,
+ "id": 806,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -21251,20 +21251,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 249,
+ "line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L258"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 804,
+ "id": 805,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -21272,20 +21272,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 248,
+ "line": 257,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L257"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
},
{
- "id": 806,
+ "id": 807,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -21295,14 +21295,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 250,
+ "line": 259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L259"
}
],
"type": {
"type": "reference",
- "target": 758,
+ "target": 759,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -21311,15 +21311,15 @@
"groups": [
{
"title": "Properties",
- "children": [805, 804, 806]
+ "children": [806, 805, 807]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 247,
+ "line": 256,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L256"
}
]
}
@@ -21330,7 +21330,7 @@
}
},
{
- "id": 1319,
+ "id": 1320,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -21338,18 +21338,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1398,
+ "line": 1407,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1398"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1407"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -21359,7 +21359,7 @@
}
},
{
- "id": 1404,
+ "id": 1405,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -21375,22 +21375,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1644,
+ "line": 1653,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1644"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1653"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1405,
+ "id": 1406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1406,
+ "id": 1407,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -21406,9 +21406,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1646,
+ "line": 1655,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1646"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1655"
}
],
"type": {
@@ -21417,7 +21417,7 @@
}
},
{
- "id": 1407,
+ "id": 1408,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -21435,9 +21435,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1648,
+ "line": 1657,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1648"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1657"
}
],
"type": {
@@ -21446,7 +21446,7 @@
}
},
{
- "id": 1409,
+ "id": 1410,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -21464,23 +21464,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1652,
+ "line": 1661,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1384,
+ "target": 1385,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1408,
+ "id": 1409,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -21496,9 +21496,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1650,
+ "line": 1659,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1659"
}
],
"type": {
@@ -21510,7 +21510,7 @@
}
},
{
- "id": 1410,
+ "id": 1411,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -21528,23 +21528,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1654,
+ "line": 1663,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1654"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1663"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1385,
+ "target": 1386,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1411,
+ "id": 1412,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -21562,9 +21562,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1656,
+ "line": 1665,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1665"
}
],
"type": {
@@ -21576,22 +21576,22 @@
"groups": [
{
"title": "Properties",
- "children": [1406, 1407, 1409, 1408, 1410, 1411]
+ "children": [1407, 1408, 1410, 1409, 1411, 1412]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1644,
+ "line": 1653,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1644"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1653"
}
]
}
}
},
{
- "id": 1060,
+ "id": 1061,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -21599,9 +21599,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 824,
+ "line": 833,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L824"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L833"
}
],
"type": {
@@ -21635,7 +21635,7 @@
}
},
{
- "id": 1020,
+ "id": 1021,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -21643,9 +21643,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 735,
+ "line": 744,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L744"
}
],
"type": {
@@ -21659,7 +21659,7 @@
}
},
{
- "id": 1021,
+ "id": 1022,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -21667,9 +21667,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 737,
+ "line": 746,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L737"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L746"
}
],
"type": {
@@ -21678,14 +21678,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1022,
+ "id": 1023,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1023,
+ "id": 1024,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -21693,9 +21693,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 739,
+ "line": 748,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L739"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L748"
}
],
"type": {
@@ -21704,7 +21704,7 @@
}
},
{
- "id": 1026,
+ "id": 1027,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -21714,22 +21714,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 747,
+ "line": 756,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L747"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L756"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1027,
+ "id": 1028,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1029,
+ "id": 1030,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -21747,9 +21747,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 752,
+ "line": 761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L752"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L761"
}
],
"type": {
@@ -21758,7 +21758,7 @@
}
},
{
- "id": 1030,
+ "id": 1031,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -21768,9 +21768,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 754,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L754"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L763"
}
],
"type": {
@@ -21827,7 +21827,7 @@
}
},
{
- "id": 1028,
+ "id": 1029,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -21845,9 +21845,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 749,
+ "line": 758,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L749"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L758"
}
],
"type": {
@@ -21859,22 +21859,22 @@
"groups": [
{
"title": "Properties",
- "children": [1029, 1030, 1028]
+ "children": [1030, 1031, 1029]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 747,
+ "line": 756,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L747"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L756"
}
]
}
}
},
{
- "id": 1025,
+ "id": 1026,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -21892,9 +21892,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 745,
+ "line": 754,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L745"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L754"
}
],
"type": {
@@ -21903,7 +21903,7 @@
}
},
{
- "id": 1024,
+ "id": 1025,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -21929,14 +21929,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 742,
+ "line": 751,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L751"
}
],
"type": {
"type": "reference",
- "target": 1020,
+ "target": 1021,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -21945,15 +21945,15 @@
"groups": [
{
"title": "Properties",
- "children": [1023, 1026, 1025, 1024]
+ "children": [1024, 1027, 1026, 1025]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 738,
+ "line": 747,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L738"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L747"
}
]
}
@@ -21961,14 +21961,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1031,
+ "id": 1032,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1032,
+ "id": 1033,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -21976,9 +21976,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 760,
+ "line": 769,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L760"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L769"
}
],
"type": {
@@ -21987,7 +21987,7 @@
}
},
{
- "id": 1033,
+ "id": 1034,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -22027,9 +22027,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 763,
+ "line": 772,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L763"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L772"
}
],
"type": {
@@ -22038,7 +22038,7 @@
}
},
{
- "id": 1035,
+ "id": 1036,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22048,22 +22048,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 768,
+ "line": 777,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L768"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L777"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1036,
+ "id": 1037,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1037,
+ "id": 1038,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -22081,9 +22081,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 770,
+ "line": 779,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L770"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L779"
}
],
"type": {
@@ -22095,22 +22095,22 @@
"groups": [
{
"title": "Properties",
- "children": [1037]
+ "children": [1038]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 768,
+ "line": 777,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L768"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L777"
}
]
}
}
},
{
- "id": 1034,
+ "id": 1035,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -22126,9 +22126,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 766,
+ "line": 775,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L766"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L775"
}
],
"type": {
@@ -22145,15 +22145,15 @@
"groups": [
{
"title": "Properties",
- "children": [1032, 1033, 1035, 1034]
+ "children": [1033, 1034, 1036, 1035]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 759,
+ "line": 768,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L768"
}
]
}
@@ -22162,7 +22162,7 @@
}
},
{
- "id": 853,
+ "id": 854,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -22186,7 +22186,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1176
+ "target": 1177
},
{
"kind": "text",
@@ -22200,7 +22200,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1287
+ "target": 1288
},
{
"kind": "text",
@@ -22226,33 +22226,33 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 392,
+ "line": 401,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L401"
}
],
"typeParameters": [
{
- "id": 862,
+ "id": 863,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 852,
+ "target": 853,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 852,
+ "target": 853,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 863,
+ "id": 864,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -22291,14 +22291,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 854,
+ "id": 855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 859,
+ "id": 860,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -22306,9 +22306,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 412,
+ "line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L412"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L421"
}
],
"type": {
@@ -22317,7 +22317,7 @@
}
},
{
- "id": 857,
+ "id": 858,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -22349,21 +22349,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 405,
+ "line": 414,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L405"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L414"
}
],
"type": {
"type": "reference",
- "target": 862,
+ "target": 863,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 856,
+ "id": 857,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -22381,9 +22381,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 400,
+ "line": 409,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L409"
}
],
"type": {
@@ -22392,7 +22392,7 @@
}
},
{
- "id": 855,
+ "id": 856,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -22408,9 +22408,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 397,
+ "line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L406"
}
],
"type": {
@@ -22419,7 +22419,7 @@
}
},
{
- "id": 861,
+ "id": 862,
"name": "last_challenged_at",
"variant": "declaration",
"kind": 1024,
@@ -22429,9 +22429,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 414,
+ "line": 423,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L423"
}
],
"type": {
@@ -22440,7 +22440,7 @@
}
},
{
- "id": 858,
+ "id": 859,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -22484,21 +22484,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 410,
+ "line": 419,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L419"
}
],
"type": {
"type": "reference",
- "target": 863,
+ "target": 864,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 860,
+ "id": 861,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -22506,9 +22506,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 413,
+ "line": 422,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L413"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L422"
}
],
"type": {
@@ -22520,22 +22520,22 @@
"groups": [
{
"title": "Properties",
- "children": [859, 857, 856, 855, 861, 858, 860]
+ "children": [860, 858, 857, 856, 862, 859, 861]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 395,
+ "line": 404,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L395"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L404"
}
]
}
}
},
{
- "id": 852,
+ "id": 853,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -22567,9 +22567,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 376,
+ "line": 385,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L376"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L385"
}
],
"type": {
@@ -22594,7 +22594,7 @@
}
},
{
- "id": 1106,
+ "id": 1107,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22602,22 +22602,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 903,
+ "line": 912,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1107,
+ "id": 1108,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1109,
+ "id": 1110,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -22633,9 +22633,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 906,
+ "line": 915,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L906"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L915"
}
],
"type": {
@@ -22644,7 +22644,7 @@
}
},
{
- "id": 1110,
+ "id": 1111,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -22660,9 +22660,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 910,
+ "line": 919,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L919"
}
],
"type": {
@@ -22671,7 +22671,7 @@
}
},
{
- "id": 1111,
+ "id": 1112,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22681,9 +22681,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 911,
+ "line": 920,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L911"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L920"
}
],
"type": {
@@ -22695,7 +22695,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -22709,7 +22709,7 @@
}
},
{
- "id": 1108,
+ "id": 1109,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22717,9 +22717,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 904,
+ "line": 913,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L904"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L913"
}
],
"type": {
@@ -22740,22 +22740,22 @@
"groups": [
{
"title": "Properties",
- "children": [1109, 1110, 1111, 1108]
+ "children": [1110, 1111, 1112, 1109]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 903,
+ "line": 912,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L912"
}
]
}
}
},
{
- "id": 1096,
+ "id": 1097,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22763,22 +22763,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 889,
+ "line": 898,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L889"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L898"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1097,
+ "id": 1098,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1099,
+ "id": 1100,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -22794,9 +22794,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 892,
+ "line": 901,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L892"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L901"
}
],
"type": {
@@ -22805,7 +22805,7 @@
}
},
{
- "id": 1100,
+ "id": 1101,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22815,9 +22815,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 893,
+ "line": 902,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L893"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L902"
}
],
"type": {
@@ -22829,7 +22829,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -22852,7 +22852,7 @@
}
},
{
- "id": 1098,
+ "id": 1099,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22860,9 +22860,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 890,
+ "line": 899,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L890"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L899"
}
],
"type": {
@@ -22883,22 +22883,22 @@
"groups": [
{
"title": "Properties",
- "children": [1099, 1100, 1098]
+ "children": [1100, 1101, 1099]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 889,
+ "line": 898,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L889"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L898"
}
]
}
}
},
{
- "id": 1115,
+ "id": 1116,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22906,9 +22906,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 925,
+ "line": 934,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L925"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L934"
}
],
"type": {
@@ -22916,25 +22916,25 @@
"types": [
{
"type": "reference",
- "target": 1090,
+ "target": 1091,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1096,
+ "target": 1097,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1101,
+ "target": 1102,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1106,
+ "target": 1107,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -22942,7 +22942,7 @@
}
},
{
- "id": 1120,
+ "id": 1121,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -22958,22 +22958,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 937,
+ "line": 946,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L937"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L946"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1121,
+ "id": 1122,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1122,
+ "id": 1123,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -22989,9 +22989,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 942,
+ "line": 951,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L942"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L951"
}
],
"type": {
@@ -23000,7 +23000,7 @@
}
},
{
- "id": 1123,
+ "id": 1124,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -23016,9 +23016,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 947,
+ "line": 956,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L947"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L956"
}
],
"type": {
@@ -23027,7 +23027,7 @@
}
},
{
- "id": 1124,
+ "id": 1125,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -23043,9 +23043,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 951,
+ "line": 960,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L951"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L960"
}
],
"type": {
@@ -23054,7 +23054,7 @@
}
},
{
- "id": 1125,
+ "id": 1126,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -23070,9 +23070,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 953,
+ "line": 962,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L962"
}
],
"type": {
@@ -23081,7 +23081,7 @@
}
},
{
- "id": 1126,
+ "id": 1127,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -23097,14 +23097,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 955,
+ "line": 964,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L955"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L964"
}
],
"type": {
"type": "reference",
- "target": 1127,
+ "target": 1128,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -23113,22 +23113,22 @@
"groups": [
{
"title": "Properties",
- "children": [1122, 1123, 1124, 1125, 1126]
+ "children": [1123, 1124, 1125, 1126, 1127]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 937,
+ "line": 946,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L937"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L946"
}
]
}
}
},
{
- "id": 1116,
+ "id": 1117,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23136,26 +23136,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 931,
+ "line": 940,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L940"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1117,
+ "id": 1118,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1118,
+ "id": 1119,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -23163,20 +23163,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 932,
+ "line": 941,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L941"
}
],
"type": {
"type": "reference",
- "target": 1120,
+ "target": 1121,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1119,
+ "id": 1120,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -23184,14 +23184,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 933,
+ "line": 942,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L933"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L942"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -23200,15 +23200,15 @@
"groups": [
{
"title": "Properties",
- "children": [1118, 1119]
+ "children": [1119, 1120]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 931,
+ "line": 940,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L940"
}
]
}
@@ -23219,7 +23219,7 @@
}
},
{
- "id": 1127,
+ "id": 1128,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -23227,9 +23227,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 958,
+ "line": 967,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L967"
}
],
"type": {
@@ -23263,7 +23263,7 @@
}
},
{
- "id": 1101,
+ "id": 1102,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -23271,22 +23271,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 896,
+ "line": 905,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L896"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L905"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1102,
+ "id": 1103,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1104,
+ "id": 1105,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -23302,9 +23302,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 899,
+ "line": 908,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L899"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L908"
}
],
"type": {
@@ -23313,7 +23313,7 @@
}
},
{
- "id": 1105,
+ "id": 1106,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -23323,9 +23323,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 900,
+ "line": 909,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L900"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L909"
}
],
"type": {
@@ -23337,7 +23337,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -23351,7 +23351,7 @@
}
},
{
- "id": 1103,
+ "id": 1104,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -23359,9 +23359,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 897,
+ "line": 906,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L897"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L906"
}
],
"type": {
@@ -23373,22 +23373,22 @@
"groups": [
{
"title": "Properties",
- "children": [1104, 1105, 1103]
+ "children": [1105, 1106, 1104]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 896,
+ "line": 905,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L896"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L905"
}
]
}
}
},
{
- "id": 1090,
+ "id": 1091,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -23396,22 +23396,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 882,
+ "line": 891,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L882"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L891"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1091,
+ "id": 1092,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1093,
+ "id": 1094,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -23419,9 +23419,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 884,
+ "line": 893,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L884"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L893"
}
],
"type": {
@@ -23430,7 +23430,7 @@
}
},
{
- "id": 1095,
+ "id": 1096,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -23440,9 +23440,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 886,
+ "line": 895,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L886"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L895"
}
],
"type": {
@@ -23454,7 +23454,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -23477,7 +23477,7 @@
}
},
{
- "id": 1094,
+ "id": 1095,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -23485,9 +23485,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 885,
+ "line": 894,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L885"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L894"
}
],
"type": {
@@ -23496,7 +23496,7 @@
}
},
{
- "id": 1092,
+ "id": 1093,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -23504,9 +23504,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 883,
+ "line": 892,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L883"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L892"
}
],
"type": {
@@ -23518,15 +23518,15 @@
"groups": [
{
"title": "Properties",
- "children": [1093, 1095, 1094, 1092]
+ "children": [1094, 1096, 1095, 1093]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 882,
+ "line": 891,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L882"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L891"
}
]
}
@@ -23543,7 +23543,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 73,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L73"
}
],
"type": {
@@ -23568,7 +23568,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L102"
}
],
"type": {
@@ -23589,7 +23589,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L120"
}
],
"type": {
@@ -23612,7 +23612,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L120"
}
],
"signatures": [
@@ -23694,7 +23694,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"type": {
@@ -23717,7 +23717,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"signatures": [
@@ -23763,7 +23763,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"indexSignatures": [
@@ -23778,7 +23778,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"parameters": [
@@ -23828,7 +23828,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 116,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L116"
}
],
"type": {
@@ -23854,12 +23854,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L118"
}
],
"type": {
"type": "reference",
- "target": 964,
+ "target": 965,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
@@ -23886,7 +23886,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L131"
}
],
"type": {
@@ -23907,7 +23907,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L77"
}
],
"type": {
@@ -23923,7 +23923,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 77,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L77"
}
],
"indexSignatures": [
@@ -23938,7 +23938,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L77"
}
],
"parameters": [
@@ -23985,7 +23985,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 126,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L126"
}
],
"type": {
@@ -24052,7 +24052,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 172,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L172"
}
],
"type": {
@@ -24073,7 +24073,47 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L104"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 757,
+ "name": "skipAutoInitialize",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If true, skips automatic initialization in constructor. Useful for SSR\ncontexts where initialization timing must be controlled to prevent race\nconditions with HTTP response generation."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@default",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```ts\nfalse\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 181,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -24094,12 +24134,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L106"
}
],
"type": {
"type": "reference",
- "target": 1313,
+ "target": 1314,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -24117,7 +24157,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L79"
}
],
"type": {
@@ -24146,7 +24186,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L136"
}
],
"type": {
@@ -24167,7 +24207,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L75"
}
],
"type": {
@@ -24237,12 +24277,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L114"
}
],
"type": {
"type": "reference",
- "target": 1313,
+ "target": 1314,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -24252,7 +24292,7 @@
{
"title": "Properties",
"children": [
- 742, 748, 734, 746, 747, 754, 729, 753, 756, 743, 744, 733, 755, 728, 745
+ 742, 748, 734, 746, 747, 754, 729, 753, 756, 743, 757, 744, 733, 755, 728, 745
]
}
],
@@ -24261,14 +24301,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 73,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L73"
}
]
}
}
},
{
- "id": 1316,
+ "id": 1317,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -24276,22 +24316,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1396,
+ "line": 1405,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1405"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1317,
+ "id": 1318,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1318,
+ "id": 1319,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -24299,9 +24339,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1396,
+ "line": 1405,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1405"
}
],
"type": {
@@ -24309,7 +24349,7 @@
"types": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -24324,22 +24364,22 @@
"groups": [
{
"title": "Properties",
- "children": [1318]
+ "children": [1319]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1396,
+ "line": 1405,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1405"
}
]
}
}
},
{
- "id": 1340,
+ "id": 1341,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -24347,22 +24387,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1519,
+ "line": 1528,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1519"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1528"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1341,
+ "id": 1342,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1342,
+ "id": 1343,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -24370,9 +24410,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1520,
+ "line": 1529,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1520"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1529"
}
],
"type": {
@@ -24394,7 +24434,7 @@
}
},
{
- "id": 1343,
+ "id": 1344,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -24402,9 +24442,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1521,
+ "line": 1530,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1530"
}
],
"type": {
@@ -24413,7 +24453,7 @@
}
},
{
- "id": 1344,
+ "id": 1345,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -24421,9 +24461,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1522,
+ "line": 1531,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1531"
}
],
"type": {
@@ -24435,15 +24475,15 @@
"groups": [
{
"title": "Properties",
- "children": [1342, 1343, 1344]
+ "children": [1343, 1344, 1345]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1519,
+ "line": 1528,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1519"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1528"
}
]
}
@@ -24477,7 +24517,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 71,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L71"
}
],
"type": {
@@ -24493,7 +24533,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 71,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L71"
}
],
"signatures": [
@@ -24586,7 +24626,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 71,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L71"
}
],
"signatures": [
@@ -24644,7 +24684,7 @@
}
},
{
- "id": 1146,
+ "id": 1147,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -24652,9 +24692,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1077,
+ "line": 1086,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1077"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1086"
}
],
"type": {
@@ -24668,7 +24708,7 @@
}
},
{
- "id": 1145,
+ "id": 1146,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -24676,9 +24716,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1064,
+ "line": 1073,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1064"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1073"
}
],
"type": {
@@ -24686,19 +24726,19 @@
"types": [
{
"type": "reference",
- "target": 1142,
+ "target": 1143,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1143,
+ "target": 1144,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1144,
+ "target": 1145,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -24706,7 +24746,7 @@
}
},
{
- "id": 1143,
+ "id": 1144,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -24714,14 +24754,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1041,
+ "line": 1050,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1041"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1050"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -24752,7 +24792,7 @@
}
},
{
- "id": 1142,
+ "id": 1143,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -24760,14 +24800,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1034,
+ "line": 1043,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1034"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1043"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "reference",
@@ -24784,7 +24824,7 @@
}
},
{
- "id": 1144,
+ "id": 1145,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -24813,14 +24853,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1060,
+ "line": 1069,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1060"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1069"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -24851,7 +24891,7 @@
}
},
{
- "id": 1128,
+ "id": 1129,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -24859,9 +24899,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 966,
+ "line": 975,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L966"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L975"
}
],
"type": {
@@ -24869,19 +24909,19 @@
"types": [
{
"type": "reference",
- "target": 1334,
+ "target": 1335,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1335,
+ "target": 1336,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1336,
+ "target": 1337,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -24889,7 +24929,7 @@
}
},
{
- "id": 1335,
+ "id": 1336,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -24897,14 +24937,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1446,
+ "line": 1455,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1455"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -24941,7 +24981,7 @@
}
},
{
- "id": 1334,
+ "id": 1335,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -24949,14 +24989,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1440,
+ "line": 1449,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1440"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1449"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -24993,7 +25033,7 @@
}
},
{
- "id": 1336,
+ "id": 1337,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -25022,14 +25062,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1459,
+ "line": 1468,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1459"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1468"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -25066,7 +25106,7 @@
}
},
{
- "id": 1141,
+ "id": 1142,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -25074,9 +25114,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1032,
+ "line": 1041,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1032"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1041"
}
],
"type": {
@@ -25101,7 +25141,7 @@
}
},
{
- "id": 1129,
+ "id": 1130,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -25109,22 +25149,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 968,
+ "line": 977,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L968"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L977"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1130,
+ "id": 1131,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1131,
+ "id": 1132,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -25140,9 +25180,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 970,
+ "line": 979,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L970"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L979"
}
],
"type": {
@@ -25154,22 +25194,22 @@
"groups": [
{
"title": "Properties",
- "children": [1131]
+ "children": [1132]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 968,
+ "line": 977,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L968"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L977"
}
]
}
}
},
{
- "id": 1140,
+ "id": 1141,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -25177,9 +25217,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1024,
+ "line": 1033,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1024"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1033"
}
],
"type": {
@@ -25187,19 +25227,19 @@
"types": [
{
"type": "reference",
- "target": 1132,
+ "target": 1133,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1138,
+ "target": 1139,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -25207,7 +25247,7 @@
}
},
{
- "id": 1133,
+ "id": 1134,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -25215,14 +25255,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 989,
+ "line": 998,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L989"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L998"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -25253,7 +25293,7 @@
}
},
{
- "id": 1132,
+ "id": 1133,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -25261,14 +25301,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 985,
+ "line": 994,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L985"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L994"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -25299,7 +25339,7 @@
}
},
{
- "id": 1134,
+ "id": 1135,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -25315,14 +25355,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1011,
+ "line": 1020,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1011"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1020"
}
],
"typeParameters": [
{
- "id": 1137,
+ "id": 1138,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -25366,14 +25406,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1135,
+ "id": 1136,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1136,
+ "id": 1137,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -25381,9 +25421,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1012,
+ "line": 1021,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1012"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1021"
}
],
"type": {
@@ -25407,7 +25447,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1137,
+ "target": 1138,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -25423,22 +25463,22 @@
"groups": [
{
"title": "Properties",
- "children": [1136]
+ "children": [1137]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1011,
+ "line": 1020,
"character": 98,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1011"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1020"
}
]
}
}
},
{
- "id": 1138,
+ "id": 1139,
"name": "MFAVerifyWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -25467,14 +25507,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1021,
+ "line": 1030,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1021"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1030"
}
],
"typeParameters": [
{
- "id": 1139,
+ "id": 1140,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -25517,7 +25557,7 @@
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -25533,11 +25573,11 @@
},
{
"type": "reference",
- "target": 1134,
+ "target": 1135,
"typeArguments": [
{
"type": "reference",
- "target": 1139,
+ "target": 1140,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -25554,7 +25594,7 @@
}
},
{
- "id": 1059,
+ "id": 1060,
"name": "MobileOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -25562,9 +25602,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 823,
+ "line": 832,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L823"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L832"
}
],
"type": {
@@ -25582,7 +25622,7 @@
}
},
{
- "id": 1455,
+ "id": 1456,
"name": "OAuthAuthorizationClient",
"variant": "declaration",
"kind": 2097152,
@@ -25598,22 +25638,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1764,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1764"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1456,
+ "id": 1457,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1457,
+ "id": 1458,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -25629,9 +25669,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1757,
+ "line": 1766,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1766"
}
],
"type": {
@@ -25640,7 +25680,7 @@
}
},
{
- "id": 1460,
+ "id": 1461,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -25656,9 +25696,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1763,
+ "line": 1772,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1763"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1772"
}
],
"type": {
@@ -25667,7 +25707,7 @@
}
},
{
- "id": 1458,
+ "id": 1459,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -25683,9 +25723,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1759,
+ "line": 1768,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1759"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1768"
}
],
"type": {
@@ -25694,7 +25734,7 @@
}
},
{
- "id": 1459,
+ "id": 1460,
"name": "uri",
"variant": "declaration",
"kind": 1024,
@@ -25710,9 +25750,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1761,
+ "line": 1770,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1761"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1770"
}
],
"type": {
@@ -25724,22 +25764,22 @@
"groups": [
{
"title": "Properties",
- "children": [1457, 1460, 1458, 1459]
+ "children": [1458, 1461, 1459, 1460]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1764,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1764"
}
]
}
}
},
{
- "id": 1461,
+ "id": 1462,
"name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
@@ -25771,22 +25811,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1777,
+ "line": 1786,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1786"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1462,
+ "id": 1463,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1463,
+ "id": 1464,
"name": "authorization_id",
"variant": "declaration",
"kind": 1024,
@@ -25802,9 +25842,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1779,
+ "line": 1788,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1779"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1788"
}
],
"type": {
@@ -25813,7 +25853,7 @@
}
},
{
- "id": 1465,
+ "id": 1466,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -25829,20 +25869,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1783,
+ "line": 1792,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1783"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1792"
}
],
"type": {
"type": "reference",
- "target": 1455,
+ "target": 1456,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1464,
+ "id": 1465,
"name": "redirect_uri",
"variant": "declaration",
"kind": 1024,
@@ -25858,9 +25898,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1781,
+ "line": 1790,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1781"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1790"
}
],
"type": {
@@ -25869,7 +25909,7 @@
}
},
{
- "id": 1470,
+ "id": 1471,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -25885,9 +25925,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1792,
+ "line": 1801,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1792"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1801"
}
],
"type": {
@@ -25896,7 +25936,7 @@
}
},
{
- "id": 1466,
+ "id": 1467,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -25912,22 +25952,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1785,
+ "line": 1794,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1794"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1467,
+ "id": 1468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1469,
+ "id": 1470,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -25943,9 +25983,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1789,
+ "line": 1798,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1789"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1798"
}
],
"type": {
@@ -25954,7 +25994,7 @@
}
},
{
- "id": 1468,
+ "id": 1469,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -25970,9 +26010,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1787,
+ "line": 1796,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1787"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1796"
}
],
"type": {
@@ -25984,15 +26024,15 @@
"groups": [
{
"title": "Properties",
- "children": [1469, 1468]
+ "children": [1470, 1469]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1785,
+ "line": 1794,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1794"
}
]
}
@@ -26002,22 +26042,22 @@
"groups": [
{
"title": "Properties",
- "children": [1463, 1465, 1464, 1470, 1466]
+ "children": [1464, 1466, 1465, 1471, 1467]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1777,
+ "line": 1786,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1786"
}
]
}
}
},
{
- "id": 1388,
+ "id": 1389,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -26033,22 +26073,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1609,
+ "line": 1618,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1609"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1618"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1389,
+ "id": 1390,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1390,
+ "id": 1391,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -26064,9 +26104,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1611,
+ "line": 1620,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1611"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1620"
}
],
"type": {
@@ -26075,7 +26115,7 @@
}
},
{
- "id": 1391,
+ "id": 1392,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -26091,9 +26131,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1613,
+ "line": 1622,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1613"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1622"
}
],
"type": {
@@ -26102,7 +26142,7 @@
}
},
{
- "id": 1392,
+ "id": 1393,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -26120,9 +26160,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1615,
+ "line": 1624,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1615"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1624"
}
],
"type": {
@@ -26131,7 +26171,7 @@
}
},
{
- "id": 1393,
+ "id": 1394,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -26147,20 +26187,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1617,
+ "line": 1626,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1617"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1626"
}
],
"type": {
"type": "reference",
- "target": 1386,
+ "target": 1387,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1396,
+ "id": 1397,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -26178,9 +26218,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1623,
+ "line": 1632,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1623"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1632"
}
],
"type": {
@@ -26189,7 +26229,7 @@
}
},
{
- "id": 1402,
+ "id": 1403,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -26205,9 +26245,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1635,
+ "line": 1644,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1635"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1644"
}
],
"type": {
@@ -26216,7 +26256,7 @@
}
},
{
- "id": 1399,
+ "id": 1400,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -26232,23 +26272,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1629,
+ "line": 1638,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1629"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1638"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1384,
+ "target": 1385,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1397,
+ "id": 1398,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -26266,9 +26306,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1625,
+ "line": 1634,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1625"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1634"
}
],
"type": {
@@ -26277,7 +26317,7 @@
}
},
{
- "id": 1398,
+ "id": 1399,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -26293,9 +26333,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1627,
+ "line": 1636,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1627"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1636"
}
],
"type": {
@@ -26307,7 +26347,7 @@
}
},
{
- "id": 1395,
+ "id": 1396,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -26323,20 +26363,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1621,
+ "line": 1630,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1621"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1630"
}
],
"type": {
"type": "reference",
- "target": 1387,
+ "target": 1388,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1400,
+ "id": 1401,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -26352,23 +26392,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1631,
+ "line": 1640,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1631"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1640"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1385,
+ "target": 1386,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1401,
+ "id": 1402,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -26386,9 +26426,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1633,
+ "line": 1642,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1633"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1642"
}
],
"type": {
@@ -26397,7 +26437,7 @@
}
},
{
- "id": 1394,
+ "id": 1395,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -26413,9 +26453,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1619,
+ "line": 1628,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1619"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1628"
}
],
"type": {
@@ -26424,7 +26464,7 @@
}
},
{
- "id": 1403,
+ "id": 1404,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -26440,9 +26480,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1637,
+ "line": 1646,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1637"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1646"
}
],
"type": {
@@ -26455,23 +26495,23 @@
{
"title": "Properties",
"children": [
- 1390, 1391, 1392, 1393, 1396, 1402, 1399, 1397, 1398, 1395, 1400, 1401, 1394, 1403
+ 1391, 1392, 1393, 1394, 1397, 1403, 1400, 1398, 1399, 1396, 1401, 1402, 1395, 1404
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1609,
+ "line": 1618,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1609"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1618"
}
]
}
}
},
{
- "id": 1384,
+ "id": 1385,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -26487,9 +26527,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1585,
+ "line": 1594,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1585"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1594"
}
],
"type": {
@@ -26507,7 +26547,7 @@
}
},
{
- "id": 1420,
+ "id": 1421,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -26523,9 +26563,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1687,
+ "line": 1696,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1687"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1696"
}
],
"type": {
@@ -26534,14 +26574,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1421,
+ "id": 1422,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1422,
+ "id": 1423,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26549,9 +26589,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
],
"type": {
@@ -26560,14 +26600,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1423,
+ "id": 1424,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1425,
+ "id": 1426,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -26575,9 +26615,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
],
"type": {
@@ -26586,7 +26626,7 @@
}
},
{
- "id": 1424,
+ "id": 1425,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -26594,16 +26634,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1388,
+ "target": 1389,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -26613,22 +26653,22 @@
"groups": [
{
"title": "Properties",
- "children": [1425, 1424]
+ "children": [1426, 1425]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
]
}
},
{
"type": "reference",
- "target": 1320,
+ "target": 1321,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -26636,7 +26676,7 @@
}
},
{
- "id": 1426,
+ "id": 1427,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26644,9 +26684,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1690,
+ "line": 1699,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1690"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1699"
}
],
"type": {
@@ -26658,15 +26698,15 @@
"groups": [
{
"title": "Properties",
- "children": [1422, 1426]
+ "children": [1423, 1427]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1688,
+ "line": 1697,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1688"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1697"
}
]
}
@@ -26674,14 +26714,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1427,
+ "id": 1428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1428,
+ "id": 1429,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26689,22 +26729,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1693,
+ "line": 1702,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1702"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1429,
+ "id": 1430,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1430,
+ "id": 1431,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -26712,9 +26752,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1693,
+ "line": 1702,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1702"
}
],
"type": {
@@ -26725,22 +26765,22 @@
"groups": [
{
"title": "Properties",
- "children": [1430]
+ "children": [1431]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1693,
+ "line": 1702,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1702"
}
]
}
}
},
{
- "id": 1431,
+ "id": 1432,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26748,14 +26788,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1694,
+ "line": 1703,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1703"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -26764,15 +26804,15 @@
"groups": [
{
"title": "Properties",
- "children": [1428, 1431]
+ "children": [1429, 1432]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1692,
+ "line": 1701,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1692"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1701"
}
]
}
@@ -26781,7 +26821,7 @@
}
},
{
- "id": 1387,
+ "id": 1388,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -26797,9 +26837,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1603,
+ "line": 1612,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1603"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1612"
}
],
"type": {
@@ -26817,7 +26857,7 @@
}
},
{
- "id": 1419,
+ "id": 1420,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -26833,18 +26873,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1681,
+ "line": 1690,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1681"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1690"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1388,
+ "target": 1389,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -26854,7 +26894,7 @@
}
},
{
- "id": 1385,
+ "id": 1386,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -26870,9 +26910,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1591,
+ "line": 1600,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1591"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1600"
}
],
"type": {
@@ -26881,7 +26921,7 @@
}
},
{
- "id": 1386,
+ "id": 1387,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -26897,9 +26937,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1597,
+ "line": 1606,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1597"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1606"
}
],
"type": {
@@ -26917,7 +26957,7 @@
}
},
{
- "id": 1476,
+ "id": 1477,
"name": "OAuthGrant",
"variant": "declaration",
"kind": 2097152,
@@ -26933,22 +26973,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1849,
+ "line": 1858,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1849"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1858"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1477,
+ "id": 1478,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1478,
+ "id": 1479,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -26964,20 +27004,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1851,
+ "line": 1860,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1851"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1860"
}
],
"type": {
"type": "reference",
- "target": 1455,
+ "target": 1456,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1480,
+ "id": 1481,
"name": "granted_at",
"variant": "declaration",
"kind": 1024,
@@ -26993,9 +27033,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1855,
+ "line": 1864,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1855"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1864"
}
],
"type": {
@@ -27004,7 +27044,7 @@
}
},
{
- "id": 1479,
+ "id": 1480,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -27020,9 +27060,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1853,
+ "line": 1862,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1853"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1862"
}
],
"type": {
@@ -27037,22 +27077,22 @@
"groups": [
{
"title": "Properties",
- "children": [1478, 1480, 1479]
+ "children": [1479, 1481, 1480]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1849,
+ "line": 1858,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1849"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1858"
}
]
}
}
},
{
- "id": 1471,
+ "id": 1472,
"name": "OAuthRedirect",
"variant": "declaration",
"kind": 2097152,
@@ -27076,22 +27116,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1808,
+ "line": 1817,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1808"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1817"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1472,
+ "id": 1473,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1473,
+ "id": 1474,
"name": "redirect_url",
"variant": "declaration",
"kind": 1024,
@@ -27107,9 +27147,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1810,
+ "line": 1819,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1810"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1819"
}
],
"type": {
@@ -27121,22 +27161,22 @@
"groups": [
{
"title": "Properties",
- "children": [1473]
+ "children": [1474]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1808,
+ "line": 1817,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1808"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1817"
}
]
}
}
},
{
- "id": 807,
+ "id": 808,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -27144,9 +27184,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 253,
+ "line": 262,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L262"
}
],
"type": {
@@ -27155,14 +27195,14 @@
{
"type": "reflection",
"declaration": {
- "id": 808,
+ "id": 809,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 809,
+ "id": 810,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -27170,22 +27210,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 255,
+ "line": 264,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L264"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 810,
+ "id": 811,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 811,
+ "id": 812,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -27193,9 +27233,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 256,
+ "line": 265,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L265"
}
],
"type": {
@@ -27206,7 +27246,7 @@
}
},
{
- "id": 812,
+ "id": 813,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -27214,9 +27254,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 257,
+ "line": 266,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L266"
}
],
"type": {
@@ -27228,22 +27268,22 @@
"groups": [
{
"title": "Properties",
- "children": [811, 812]
+ "children": [812, 813]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 255,
+ "line": 264,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L264"
}
]
}
}
},
{
- "id": 813,
+ "id": 814,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -27251,9 +27291,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 259,
+ "line": 268,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L259"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L268"
}
],
"type": {
@@ -27265,15 +27305,15 @@
"groups": [
{
"title": "Properties",
- "children": [809, 813]
+ "children": [810, 814]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 254,
+ "line": 263,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L263"
}
]
}
@@ -27281,14 +27321,14 @@
{
"type": "reflection",
"declaration": {
- "id": 814,
+ "id": 815,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 815,
+ "id": 816,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -27296,22 +27336,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 262,
+ "line": 271,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L271"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 816,
+ "id": 817,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 817,
+ "id": 818,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -27319,9 +27359,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 263,
+ "line": 272,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L272"
}
],
"type": {
@@ -27332,7 +27372,7 @@
}
},
{
- "id": 818,
+ "id": 819,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -27340,9 +27380,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 264,
+ "line": 273,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L273"
}
],
"type": {
@@ -27354,22 +27394,22 @@
"groups": [
{
"title": "Properties",
- "children": [817, 818]
+ "children": [818, 819]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 262,
+ "line": 271,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L271"
}
]
}
}
},
{
- "id": 819,
+ "id": 820,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -27377,14 +27417,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 266,
+ "line": 275,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L275"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -27393,15 +27433,15 @@
"groups": [
{
"title": "Properties",
- "children": [815, 819]
+ "children": [816, 820]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 261,
+ "line": 270,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L270"
}
]
}
@@ -27410,7 +27450,7 @@
}
},
{
- "id": 1327,
+ "id": 1328,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -27418,22 +27458,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1407,
+ "line": 1416,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1416"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1328,
+ "id": 1329,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1329,
+ "id": 1330,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -27451,9 +27491,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1409,
+ "line": 1418,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1409"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1418"
}
],
"type": {
@@ -27462,7 +27502,7 @@
}
},
{
- "id": 1330,
+ "id": 1331,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -27480,9 +27520,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1411,
+ "line": 1420,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1411"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1420"
}
],
"type": {
@@ -27494,22 +27534,22 @@
"groups": [
{
"title": "Properties",
- "children": [1329, 1330]
+ "children": [1330, 1331]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1407,
+ "line": 1416,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1416"
}
]
}
}
},
{
- "id": 1320,
+ "id": 1321,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -27517,22 +27557,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1400,
+ "line": 1409,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1409"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1321,
+ "id": 1322,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1323,
+ "id": 1324,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -27540,9 +27580,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1403,
+ "line": 1412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1403"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1412"
}
],
"type": {
@@ -27551,7 +27591,7 @@
}
},
{
- "id": 1322,
+ "id": 1323,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -27559,9 +27599,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1402,
+ "line": 1411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1402"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1411"
}
],
"type": {
@@ -27579,7 +27619,7 @@
}
},
{
- "id": 1324,
+ "id": 1325,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -27587,9 +27627,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1404,
+ "line": 1413,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1404"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1413"
}
],
"type": {
@@ -27601,20 +27641,20 @@
"groups": [
{
"title": "Properties",
- "children": [1323, 1322, 1324]
+ "children": [1324, 1323, 1325]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1400,
+ "line": 1409,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1409"
}
],
"indexSignatures": [
{
- "id": 1325,
+ "id": 1326,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -27622,14 +27662,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1401,
+ "line": 1410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1401"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1410"
}
],
"parameters": [
{
- "id": 1326,
+ "id": 1327,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -27650,7 +27690,7 @@
}
},
{
- "id": 762,
+ "id": 763,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -27666,14 +27706,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
],
"typeParameters": [
{
- "id": 763,
+ "id": 764,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -27684,7 +27724,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27700,7 +27740,7 @@
},
"trueType": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27713,7 +27753,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27733,7 +27773,7 @@
},
"objectType": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27761,7 +27801,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -27898,7 +27938,7 @@
}
},
{
- "id": 767,
+ "id": 768,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -27914,21 +27954,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 199,
+ "line": 208,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L208"
}
],
"typeParameters": [
{
- "id": 774,
+ "id": 775,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 775,
+ "id": 776,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -27944,7 +27984,7 @@
},
"default": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -27956,14 +27996,14 @@
{
"type": "reflection",
"declaration": {
- "id": 768,
+ "id": 769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 769,
+ "id": 770,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -27971,21 +28011,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reference",
- "target": 774,
+ "target": 775,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 770,
+ "id": 771,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -27993,9 +28033,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -28007,15 +28047,15 @@
"groups": [
{
"title": "Properties",
- "children": [769, 770]
+ "children": [770, 771]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 200,
+ "line": 209,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L209"
}
]
}
@@ -28023,14 +28063,14 @@
{
"type": "reflection",
"declaration": {
- "id": 771,
+ "id": 772,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 772,
+ "id": 773,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28038,9 +28078,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -28049,7 +28089,7 @@
}
},
{
- "id": 773,
+ "id": 774,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -28057,9 +28097,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
@@ -28075,19 +28115,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 775,
+ "target": 776,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -28098,15 +28138,15 @@
"groups": [
{
"title": "Properties",
- "children": [772, 773]
+ "children": [773, 774]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 204,
+ "line": 213,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L213"
}
]
}
@@ -28115,7 +28155,7 @@
}
},
{
- "id": 776,
+ "id": 777,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -28136,14 +28176,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 213,
+ "line": 222,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L222"
}
],
"typeParameters": [
{
- "id": 783,
+ "id": 784,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -28156,14 +28196,14 @@
{
"type": "reflection",
"declaration": {
- "id": 777,
+ "id": 778,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 778,
+ "id": 779,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28171,21 +28211,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 214,
+ "line": 223,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L223"
}
],
"type": {
"type": "reference",
- "target": 783,
+ "target": 784,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 779,
+ "id": 780,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -28193,9 +28233,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 214,
+ "line": 223,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L223"
}
],
"type": {
@@ -28207,15 +28247,15 @@
"groups": [
{
"title": "Properties",
- "children": [778, 779]
+ "children": [779, 780]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 214,
+ "line": 223,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L223"
}
]
}
@@ -28223,14 +28263,14 @@
{
"type": "reflection",
"declaration": {
- "id": 780,
+ "id": 781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 781,
+ "id": 782,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28238,16 +28278,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 216,
+ "line": 225,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L225"
}
],
"type": {
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 783,
+ "target": 784,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -28264,7 +28304,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 783,
+ "target": 784,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -28282,7 +28322,7 @@
}
},
{
- "id": 782,
+ "id": 783,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -28290,14 +28330,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 217,
+ "line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L226"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -28306,15 +28346,15 @@
"groups": [
{
"title": "Properties",
- "children": [781, 782]
+ "children": [782, 783]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 215,
+ "line": 224,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L224"
}
]
}
@@ -28323,7 +28363,7 @@
}
},
{
- "id": 1345,
+ "id": 1346,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -28331,22 +28371,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1525,
+ "line": 1534,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1525"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1534"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1346,
+ "id": 1347,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1353,
+ "id": 1354,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -28354,20 +28394,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1532,
+ "line": 1541,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1532"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1541"
}
],
"type": {
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1349,
+ "id": 1350,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -28375,9 +28415,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1528,
+ "line": 1537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1528"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1537"
}
],
"type": {
@@ -28398,7 +28438,7 @@
}
},
{
- "id": 1350,
+ "id": 1351,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -28406,9 +28446,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1529,
+ "line": 1538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1529"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1538"
}
],
"type": {
@@ -28417,7 +28457,7 @@
}
},
{
- "id": 1351,
+ "id": 1352,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -28425,9 +28465,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1530,
+ "line": 1539,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1539"
}
],
"type": {
@@ -28436,7 +28476,7 @@
}
},
{
- "id": 1347,
+ "id": 1348,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -28444,9 +28484,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1526,
+ "line": 1535,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1526"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1535"
}
],
"type": {
@@ -28455,7 +28495,7 @@
}
},
{
- "id": 1352,
+ "id": 1353,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -28463,9 +28503,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1531,
+ "line": 1540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1531"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1540"
}
],
"type": {
@@ -28474,7 +28514,7 @@
}
},
{
- "id": 1354,
+ "id": 1355,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -28482,9 +28522,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1533,
+ "line": 1542,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1533"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1542"
}
],
"type": {
@@ -28493,7 +28533,7 @@
}
},
{
- "id": 1348,
+ "id": 1349,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -28501,9 +28541,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1527,
+ "line": 1536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1536"
}
],
"type": {
@@ -28515,15 +28555,15 @@
"groups": [
{
"title": "Properties",
- "children": [1353, 1349, 1350, 1351, 1347, 1352, 1354, 1348]
+ "children": [1354, 1350, 1351, 1352, 1348, 1353, 1355, 1349]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1525,
+ "line": 1534,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1525"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1534"
}
]
}
@@ -28531,13 +28571,13 @@
"extendedBy": [
{
"type": "reference",
- "target": 1355,
+ "target": 1356,
"name": "JwtPayload"
}
]
},
{
- "id": 1061,
+ "id": 1062,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -28545,9 +28585,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 826,
+ "line": 835,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L826"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L835"
}
],
"type": {
@@ -28556,14 +28596,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1062,
+ "id": 1063,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1064,
+ "id": 1065,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -28571,9 +28611,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 829,
+ "line": 838,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L829"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L838"
}
],
"type": {
@@ -28582,7 +28622,7 @@
}
},
{
- "id": 1065,
+ "id": 1066,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28592,22 +28632,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 830,
+ "line": 839,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L830"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L839"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1066,
+ "id": 1067,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1068,
+ "id": 1069,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -28625,9 +28665,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 834,
+ "line": 843,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L834"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L843"
}
],
"type": {
@@ -28636,7 +28676,7 @@
}
},
{
- "id": 1067,
+ "id": 1068,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -28654,9 +28694,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 832,
+ "line": 841,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L832"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L841"
}
],
"type": {
@@ -28668,22 +28708,22 @@
"groups": [
{
"title": "Properties",
- "children": [1068, 1067]
+ "children": [1069, 1068]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 830,
+ "line": 839,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L830"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L839"
}
]
}
}
},
{
- "id": 1063,
+ "id": 1064,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -28691,9 +28731,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 828,
+ "line": 837,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L828"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L837"
}
],
"type": {
@@ -28705,7 +28745,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1060,
+ "target": 1061,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -28731,15 +28771,15 @@
"groups": [
{
"title": "Properties",
- "children": [1064, 1065, 1063]
+ "children": [1065, 1066, 1064]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 827,
+ "line": 836,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L827"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L836"
}
]
}
@@ -28747,14 +28787,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1069,
+ "id": 1070,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1072,
+ "id": 1073,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28764,22 +28804,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 840,
+ "line": 849,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L840"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L849"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1073,
+ "id": 1074,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1074,
+ "id": 1075,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -28797,9 +28837,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 842,
+ "line": 851,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L842"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L851"
}
],
"type": {
@@ -28811,22 +28851,22 @@
"groups": [
{
"title": "Properties",
- "children": [1074]
+ "children": [1075]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 840,
+ "line": 849,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L840"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L849"
}
]
}
}
},
{
- "id": 1071,
+ "id": 1072,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -28834,9 +28874,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 839,
+ "line": 848,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L839"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L848"
}
],
"type": {
@@ -28845,7 +28885,7 @@
}
},
{
- "id": 1070,
+ "id": 1071,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -28853,9 +28893,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 838,
+ "line": 847,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L838"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L847"
}
],
"type": {
@@ -28867,7 +28907,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1059,
+ "target": 1060,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -28893,15 +28933,15 @@
"groups": [
{
"title": "Properties",
- "children": [1072, 1071, 1070]
+ "children": [1073, 1072, 1071]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 837,
+ "line": 846,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L837"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L846"
}
]
}
@@ -28910,7 +28950,7 @@
}
},
{
- "id": 928,
+ "id": 929,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -28918,22 +28958,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 586,
+ "line": 595,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L595"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 929,
+ "id": 930,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 930,
+ "id": 931,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28943,22 +28983,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 587,
+ "line": 596,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L596"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 931,
+ "id": 932,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 933,
+ "id": 934,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -28976,9 +29016,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 595,
+ "line": 604,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L595"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L604"
}
],
"type": {
@@ -28987,7 +29027,7 @@
}
},
{
- "id": 932,
+ "id": 933,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29021,9 +29061,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 593,
+ "line": 602,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L593"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L602"
}
],
"type": {
@@ -29035,15 +29075,15 @@
"groups": [
{
"title": "Properties",
- "children": [933, 932]
+ "children": [934, 933]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 587,
+ "line": 596,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L596"
}
]
}
@@ -29053,22 +29093,22 @@
"groups": [
{
"title": "Properties",
- "children": [930]
+ "children": [931]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 586,
+ "line": 595,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L595"
}
]
}
}
},
{
- "id": 977,
+ "id": 978,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -29076,22 +29116,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 674,
+ "line": 683,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L683"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 978,
+ "id": 979,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 982,
+ "id": 983,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -29117,9 +29157,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 680,
+ "line": 689,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L680"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L689"
}
],
"type": {
@@ -29128,7 +29168,7 @@
}
},
{
- "id": 983,
+ "id": 984,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -29154,9 +29194,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 682,
+ "line": 691,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L682"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L691"
}
],
"type": {
@@ -29165,7 +29205,7 @@
}
},
{
- "id": 984,
+ "id": 985,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29175,22 +29215,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 683,
+ "line": 692,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L692"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 985,
+ "id": 986,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 986,
+ "id": 987,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29208,9 +29248,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 685,
+ "line": 694,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L685"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L694"
}
],
"type": {
@@ -29222,22 +29262,22 @@
"groups": [
{
"title": "Properties",
- "children": [986]
+ "children": [987]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 683,
+ "line": 692,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L692"
}
]
}
}
},
{
- "id": 979,
+ "id": 980,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -29309,9 +29349,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 676,
+ "line": 685,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L676"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L685"
}
],
"type": {
@@ -29347,7 +29387,7 @@
{
"type": "reflection",
"declaration": {
- "id": 980,
+ "id": 981,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -29355,9 +29395,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 676,
+ "line": 685,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L676"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L685"
}
]
}
@@ -29368,7 +29408,7 @@
}
},
{
- "id": 981,
+ "id": 982,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -29416,9 +29456,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 678,
+ "line": 687,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L678"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L687"
}
],
"type": {
@@ -29430,22 +29470,22 @@
"groups": [
{
"title": "Properties",
- "children": [982, 983, 984, 979, 981]
+ "children": [983, 984, 985, 980, 982]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 674,
+ "line": 683,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L683"
}
]
}
}
},
{
- "id": 965,
+ "id": 966,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -29453,22 +29493,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 659,
+ "line": 668,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L668"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 966,
+ "id": 967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 968,
+ "id": 969,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29478,22 +29518,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 662,
+ "line": 671,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L662"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L671"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 969,
+ "id": 970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 972,
+ "id": 973,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -29511,15 +29551,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 668,
+ "line": 677,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 973,
+ "id": 974,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -29527,14 +29567,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 668,
+ "line": 677,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"indexSignatures": [
{
- "id": 974,
+ "id": 975,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -29542,14 +29582,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 668,
+ "line": 677,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"parameters": [
{
- "id": 975,
+ "id": 976,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -29570,7 +29610,7 @@
}
},
{
- "id": 970,
+ "id": 971,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -29588,9 +29628,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 664,
+ "line": 673,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L673"
}
],
"type": {
@@ -29599,7 +29639,7 @@
}
},
{
- "id": 971,
+ "id": 972,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -29617,9 +29657,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 666,
+ "line": 675,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L666"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L675"
}
],
"type": {
@@ -29628,7 +29668,7 @@
}
},
{
- "id": 976,
+ "id": 977,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -29646,9 +29686,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 670,
+ "line": 679,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L670"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L679"
}
],
"type": {
@@ -29660,22 +29700,22 @@
"groups": [
{
"title": "Properties",
- "children": [972, 970, 971, 976]
+ "children": [973, 971, 972, 977]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 662,
+ "line": 671,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L662"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L671"
}
]
}
}
},
{
- "id": 967,
+ "id": 968,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -29691,9 +29731,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 661,
+ "line": 670,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L661"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L670"
}
],
"type": {
@@ -29707,22 +29747,22 @@
"groups": [
{
"title": "Properties",
- "children": [968, 967]
+ "children": [969, 968]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 659,
+ "line": 668,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L668"
}
]
}
}
},
{
- "id": 942,
+ "id": 943,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -29730,9 +29770,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 614,
+ "line": 623,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L614"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L623"
}
],
"type": {
@@ -29750,14 +29790,14 @@
{
"type": "reflection",
"declaration": {
- "id": 943,
+ "id": 944,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 944,
+ "id": 945,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29767,22 +29807,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 615,
+ "line": 624,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L615"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L624"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 945,
+ "id": 946,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 946,
+ "id": 947,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29792,9 +29832,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 616,
+ "line": 625,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L616"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L625"
}
],
"type": {
@@ -29806,15 +29846,15 @@
"groups": [
{
"title": "Properties",
- "children": [946]
+ "children": [947]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 615,
+ "line": 624,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L615"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L624"
}
]
}
@@ -29824,15 +29864,15 @@
"groups": [
{
"title": "Properties",
- "children": [944]
+ "children": [945]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 614,
+ "line": 623,
"character": 70,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L614"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L623"
}
]
}
@@ -29841,7 +29881,7 @@
}
},
{
- "id": 947,
+ "id": 948,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -29849,9 +29889,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 620,
+ "line": 629,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L620"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L629"
}
],
"type": {
@@ -29860,14 +29900,14 @@
{
"type": "reflection",
"declaration": {
- "id": 948,
+ "id": 949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 949,
+ "id": 950,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -29883,9 +29923,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 623,
+ "line": 632,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L623"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L632"
}
],
"type": {
@@ -29894,7 +29934,7 @@
}
},
{
- "id": 950,
+ "id": 951,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29904,22 +29944,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 624,
+ "line": 633,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L633"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 951,
+ "id": 952,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 955,
+ "id": 956,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29937,9 +29977,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 636,
+ "line": 645,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L636"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L645"
}
],
"type": {
@@ -29948,7 +29988,7 @@
}
},
{
- "id": 954,
+ "id": 955,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29982,9 +30022,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 634,
+ "line": 643,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L634"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L643"
}
],
"type": {
@@ -29993,7 +30033,7 @@
}
},
{
- "id": 952,
+ "id": 953,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -30011,9 +30051,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 626,
+ "line": 635,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L635"
}
],
"type": {
@@ -30022,7 +30062,7 @@
}
},
{
- "id": 953,
+ "id": 954,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -30040,9 +30080,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 628,
+ "line": 637,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L628"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L637"
}
],
"type": {
@@ -30054,15 +30094,15 @@
"groups": [
{
"title": "Properties",
- "children": [955, 954, 952, 953]
+ "children": [956, 955, 953, 954]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 624,
+ "line": 633,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L633"
}
]
}
@@ -30072,15 +30112,15 @@
"groups": [
{
"title": "Properties",
- "children": [949, 950]
+ "children": [950, 951]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 621,
+ "line": 630,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L621"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L630"
}
]
}
@@ -30088,14 +30128,14 @@
{
"type": "reflection",
"declaration": {
- "id": 956,
+ "id": 957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 958,
+ "id": 959,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30105,22 +30145,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 642,
+ "line": 651,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L642"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L651"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 959,
+ "id": 960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 962,
+ "id": 963,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30138,9 +30178,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 652,
+ "line": 661,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L661"
}
],
"type": {
@@ -30149,7 +30189,7 @@
}
},
{
- "id": 963,
+ "id": 964,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -30167,9 +30207,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 654,
+ "line": 663,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L654"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L663"
}
],
"type": {
@@ -30187,7 +30227,7 @@
}
},
{
- "id": 961,
+ "id": 962,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30221,9 +30261,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 650,
+ "line": 659,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L659"
}
],
"type": {
@@ -30232,7 +30272,7 @@
}
},
{
- "id": 960,
+ "id": 961,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -30250,9 +30290,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 644,
+ "line": 653,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L644"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L653"
}
],
"type": {
@@ -30264,22 +30304,22 @@
"groups": [
{
"title": "Properties",
- "children": [962, 963, 961, 960]
+ "children": [963, 964, 962, 961]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 642,
+ "line": 651,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L642"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L651"
}
]
}
}
},
{
- "id": 957,
+ "id": 958,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -30295,9 +30335,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 641,
+ "line": 650,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L641"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L650"
}
],
"type": {
@@ -30309,15 +30349,15 @@
"groups": [
{
"title": "Properties",
- "children": [958, 957]
+ "children": [959, 958]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 639,
+ "line": 648,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L648"
}
]
}
@@ -30326,7 +30366,7 @@
}
},
{
- "id": 1075,
+ "id": 1076,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -30334,9 +30374,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 846,
+ "line": 855,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L846"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L855"
}
],
"type": {
@@ -30345,14 +30385,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1076,
+ "id": 1077,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1078,
+ "id": 1079,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30362,22 +30402,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 851,
+ "line": 860,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L851"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L860"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1079,
+ "id": 1080,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1081,
+ "id": 1082,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30395,9 +30435,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 855,
+ "line": 864,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L855"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L864"
}
],
"type": {
@@ -30406,7 +30446,7 @@
}
},
{
- "id": 1080,
+ "id": 1081,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -30424,9 +30464,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 853,
+ "line": 862,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L853"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L862"
}
],
"type": {
@@ -30435,7 +30475,7 @@
}
},
{
- "id": 1082,
+ "id": 1083,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -30453,9 +30493,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 861,
+ "line": 870,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L861"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L870"
}
],
"type": {
@@ -30467,22 +30507,22 @@
"groups": [
{
"title": "Properties",
- "children": [1081, 1080, 1082]
+ "children": [1082, 1081, 1083]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 851,
+ "line": 860,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L851"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L860"
}
]
}
}
},
{
- "id": 1077,
+ "id": 1078,
"name": "providerId",
"variant": "declaration",
"kind": 1024,
@@ -30498,9 +30538,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 849,
+ "line": 858,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L849"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L858"
}
],
"type": {
@@ -30512,15 +30552,15 @@
"groups": [
{
"title": "Properties",
- "children": [1078, 1077]
+ "children": [1079, 1078]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 847,
+ "line": 856,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L847"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L856"
}
]
}
@@ -30528,14 +30568,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1083,
+ "id": 1084,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1084,
+ "id": 1085,
"name": "domain",
"variant": "declaration",
"kind": 1024,
@@ -30551,9 +30591,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 866,
+ "line": 875,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L866"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L875"
}
],
"type": {
@@ -30562,7 +30602,7 @@
}
},
{
- "id": 1085,
+ "id": 1086,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30572,22 +30612,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 868,
+ "line": 877,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L868"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L877"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1086,
+ "id": 1087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1088,
+ "id": 1089,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30605,9 +30645,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 872,
+ "line": 881,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L872"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L881"
}
],
"type": {
@@ -30616,7 +30656,7 @@
}
},
{
- "id": 1087,
+ "id": 1088,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -30634,9 +30674,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 870,
+ "line": 879,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L870"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L879"
}
],
"type": {
@@ -30645,7 +30685,7 @@
}
},
{
- "id": 1089,
+ "id": 1090,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -30663,9 +30703,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 878,
+ "line": 887,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L878"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L887"
}
],
"type": {
@@ -30677,15 +30717,15 @@
"groups": [
{
"title": "Properties",
- "children": [1088, 1087, 1089]
+ "children": [1089, 1088, 1090]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 868,
+ "line": 877,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L868"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L877"
}
]
}
@@ -30695,15 +30735,15 @@
"groups": [
{
"title": "Properties",
- "children": [1084, 1085]
+ "children": [1085, 1086]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 864,
+ "line": 873,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L864"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L873"
}
]
}
@@ -30712,7 +30752,7 @@
}
},
{
- "id": 1331,
+ "id": 1332,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -30720,22 +30760,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1414,
+ "line": 1423,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1423"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1332,
+ "id": 1333,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1333,
+ "id": 1334,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -30753,9 +30793,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1425,
+ "line": 1434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1425"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1434"
}
],
"type": {
@@ -30780,22 +30820,22 @@
"groups": [
{
"title": "Properties",
- "children": [1333]
+ "children": [1334]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1414,
+ "line": 1423,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1423"
}
]
}
}
},
{
- "id": 1383,
+ "id": 1384,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -30803,9 +30843,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1579,
+ "line": 1588,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1588"
}
],
"type": {
@@ -30818,7 +30858,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1382,
+ "target": 1383,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -30826,7 +30866,7 @@
}
},
{
- "id": 934,
+ "id": 935,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -30834,14 +30874,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 599,
+ "line": 608,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L599"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L608"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -30858,14 +30898,14 @@
{
"type": "reflection",
"declaration": {
- "id": 935,
+ "id": 936,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 936,
+ "id": 937,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30875,22 +30915,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 601,
+ "line": 610,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L610"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 937,
+ "id": 938,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 940,
+ "id": 941,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30900,9 +30940,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 604,
+ "line": 613,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L604"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L613"
}
],
"type": {
@@ -30911,7 +30951,7 @@
}
},
{
- "id": 941,
+ "id": 942,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -30921,9 +30961,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 605,
+ "line": 614,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L605"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L614"
}
],
"type": {
@@ -30941,7 +30981,7 @@
}
},
{
- "id": 939,
+ "id": 940,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30951,9 +30991,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 603,
+ "line": 612,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L612"
}
],
"type": {
@@ -30962,7 +31002,7 @@
}
},
{
- "id": 938,
+ "id": 939,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -30972,9 +31012,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 602,
+ "line": 611,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L611"
}
],
"type": {
@@ -30986,15 +31026,15 @@
"groups": [
{
"title": "Properties",
- "children": [940, 941, 939, 938]
+ "children": [941, 942, 940, 939]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 601,
+ "line": 610,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L610"
}
]
}
@@ -31004,15 +31044,15 @@
"groups": [
{
"title": "Properties",
- "children": [936]
+ "children": [937]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 600,
+ "line": 609,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L600"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L609"
}
]
}
@@ -31025,7 +31065,7 @@
}
},
{
- "id": 987,
+ "id": 988,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -31033,22 +31073,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 689,
+ "line": 698,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L698"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 988,
+ "id": 989,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 993,
+ "id": 994,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -31058,9 +31098,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 691,
+ "line": 700,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L691"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L700"
}
],
"type": {
@@ -31069,14 +31109,14 @@
{
"type": "reflection",
"declaration": {
- "id": 994,
+ "id": 995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 995,
+ "id": 996,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -31084,15 +31124,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 692,
+ "line": 701,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L692"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L701"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 996,
+ "id": 997,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -31100,14 +31140,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 692,
+ "line": 701,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L692"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L701"
}
],
"signatures": [
{
- "id": 997,
+ "id": 998,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -31125,15 +31165,15 @@
"groups": [
{
"title": "Properties",
- "children": [995]
+ "children": [996]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 691,
+ "line": 700,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L691"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L700"
}
]
}
@@ -31146,7 +31186,7 @@
}
},
{
- "id": 989,
+ "id": 990,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -31156,15 +31196,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 690,
+ "line": 699,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L690"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L699"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 990,
+ "id": 991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -31172,21 +31212,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 690,
+ "line": 699,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L690"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L699"
}
],
"signatures": [
{
- "id": 991,
+ "id": 992,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 992,
+ "id": 993,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -31250,7 +31290,7 @@
}
},
{
- "id": 998,
+ "id": 999,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -31260,15 +31300,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 695,
+ "line": 704,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L695"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L704"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 999,
+ "id": 1000,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -31276,21 +31316,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 695,
+ "line": 704,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L695"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L704"
}
],
"signatures": [
{
- "id": 1000,
+ "id": 1001,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 1001,
+ "id": 1002,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -31306,7 +31346,7 @@
}
},
{
- "id": 1002,
+ "id": 1003,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -31366,22 +31406,22 @@
"groups": [
{
"title": "Properties",
- "children": [993, 989, 998]
+ "children": [994, 990, 999]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 689,
+ "line": 698,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L698"
}
]
}
}
},
{
- "id": 1003,
+ "id": 1004,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -31389,9 +31429,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 698,
+ "line": 707,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L698"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L707"
}
],
"type": {
@@ -31400,14 +31440,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1004,
+ "id": 1005,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1005,
+ "id": 1006,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -31415,9 +31455,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 700,
+ "line": 709,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L700"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L709"
}
],
"type": {
@@ -31426,7 +31466,7 @@
}
},
{
- "id": 1008,
+ "id": 1009,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -31436,22 +31476,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 708,
+ "line": 717,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L717"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1009,
+ "id": 1010,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1011,
+ "id": 1012,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -31469,9 +31509,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 713,
+ "line": 722,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L713"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L722"
}
],
"type": {
@@ -31480,7 +31520,7 @@
}
},
{
- "id": 1012,
+ "id": 1013,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -31490,9 +31530,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 715,
+ "line": 724,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L715"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L724"
}
],
"type": {
@@ -31553,7 +31593,7 @@
}
},
{
- "id": 1010,
+ "id": 1011,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -31571,9 +31611,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 710,
+ "line": 719,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L710"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L719"
}
],
"type": {
@@ -31585,22 +31625,22 @@
"groups": [
{
"title": "Properties",
- "children": [1011, 1012, 1010]
+ "children": [1012, 1013, 1011]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 708,
+ "line": 717,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L717"
}
]
}
}
},
{
- "id": 1007,
+ "id": 1008,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -31618,9 +31658,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 706,
+ "line": 715,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L706"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L715"
}
],
"type": {
@@ -31629,7 +31669,7 @@
}
},
{
- "id": 1006,
+ "id": 1007,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -31655,14 +31695,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 703,
+ "line": 712,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L703"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L712"
}
],
"type": {
"type": "reference",
- "target": 987,
+ "target": 988,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -31671,15 +31711,15 @@
"groups": [
{
"title": "Properties",
- "children": [1005, 1008, 1007, 1006]
+ "children": [1006, 1009, 1008, 1007]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 699,
+ "line": 708,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L699"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L708"
}
]
}
@@ -31687,14 +31727,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1013,
+ "id": 1014,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1014,
+ "id": 1015,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -31702,9 +31742,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 721,
+ "line": 730,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L721"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L730"
}
],
"type": {
@@ -31713,7 +31753,7 @@
}
},
{
- "id": 1015,
+ "id": 1016,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -31753,9 +31793,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 724,
+ "line": 733,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L724"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L733"
}
],
"type": {
@@ -31764,7 +31804,7 @@
}
},
{
- "id": 1017,
+ "id": 1018,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -31774,22 +31814,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 729,
+ "line": 738,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L729"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L738"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1018,
+ "id": 1019,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1019,
+ "id": 1020,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -31807,9 +31847,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 731,
+ "line": 740,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L731"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L740"
}
],
"type": {
@@ -31821,22 +31861,22 @@
"groups": [
{
"title": "Properties",
- "children": [1019]
+ "children": [1020]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 729,
+ "line": 738,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L729"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L738"
}
]
}
}
},
{
- "id": 1016,
+ "id": 1017,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -31852,9 +31892,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 727,
+ "line": 736,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L727"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L736"
}
],
"type": {
@@ -31871,15 +31911,15 @@
"groups": [
{
"title": "Properties",
- "children": [1014, 1015, 1017, 1016]
+ "children": [1015, 1016, 1018, 1017]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 720,
+ "line": 729,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L720"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L729"
}
]
}
@@ -31888,7 +31928,7 @@
}
},
{
- "id": 820,
+ "id": 821,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -31896,26 +31936,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 269,
+ "line": 278,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L278"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 821,
+ "id": 822,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 822,
+ "id": 823,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -31939,9 +31979,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 277,
+ "line": 286,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L286"
}
],
"type": {
@@ -31953,15 +31993,15 @@
"groups": [
{
"title": "Properties",
- "children": [822]
+ "children": [823]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 269,
+ "line": 278,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L278"
}
]
}
@@ -31972,7 +32012,7 @@
}
},
{
- "id": 764,
+ "id": 765,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -31988,21 +32028,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 194,
+ "line": 203,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L203"
}
],
"typeParameters": [
{
- "id": 765,
+ "id": 766,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 766,
+ "id": 767,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -32012,7 +32052,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 765,
+ "target": 766,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32029,14 +32069,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 765,
+ "target": 766,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 766,
+ "target": 767,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32047,7 +32087,7 @@
}
},
{
- "id": 1313,
+ "id": 1314,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -32055,9 +32095,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1383,
+ "line": 1392,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1383"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1392"
}
],
"type": {
@@ -32114,14 +32154,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1314,
+ "id": 1315,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1315,
+ "id": 1316,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -32147,9 +32187,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1393,
+ "line": 1402,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1393"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1402"
}
],
"type": {
@@ -32161,15 +32201,15 @@
"groups": [
{
"title": "Properties",
- "children": [1315]
+ "children": [1316]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1385,
+ "line": 1394,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1385"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1394"
}
]
}
@@ -32178,7 +32218,7 @@
}
},
{
- "id": 1412,
+ "id": 1413,
"name": "UpdateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -32194,22 +32234,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1664,
+ "line": 1673,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1673"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1413,
+ "id": 1414,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1414,
+ "id": 1415,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -32227,9 +32267,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1666,
+ "line": 1675,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1666"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1675"
}
],
"type": {
@@ -32238,7 +32278,7 @@
}
},
{
- "id": 1415,
+ "id": 1416,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -32256,9 +32296,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1668,
+ "line": 1677,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1677"
}
],
"type": {
@@ -32267,7 +32307,7 @@
}
},
{
- "id": 1418,
+ "id": 1419,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -32285,23 +32325,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1674,
+ "line": 1683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1674"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1683"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1384,
+ "target": 1385,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1416,
+ "id": 1417,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -32319,9 +32359,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1670,
+ "line": 1679,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1670"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1679"
}
],
"type": {
@@ -32330,7 +32370,7 @@
}
},
{
- "id": 1417,
+ "id": 1418,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -32348,9 +32388,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1672,
+ "line": 1681,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1672"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1681"
}
],
"type": {
@@ -32365,22 +32405,22 @@
"groups": [
{
"title": "Properties",
- "children": [1414, 1415, 1418, 1416, 1417]
+ "children": [1415, 1416, 1419, 1417, 1418]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1664,
+ "line": 1673,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1673"
}
]
}
}
},
{
- "id": 823,
+ "id": 824,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -32388,26 +32428,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 280,
+ "line": 289,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L289"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 824,
+ "id": 825,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 825,
+ "id": 826,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -32415,14 +32455,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 281,
+ "line": 290,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L281"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L290"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -32431,15 +32471,15 @@
"groups": [
{
"title": "Properties",
- "children": [825]
+ "children": [826]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 280,
+ "line": 289,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L289"
}
]
}
@@ -32450,7 +32490,7 @@
}
},
{
- "id": 1039,
+ "id": 1040,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -32458,9 +32498,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 776,
+ "line": 785,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L776"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L785"
}
],
"type": {
@@ -32468,19 +32508,19 @@
"types": [
{
"type": "reference",
- "target": 1040,
+ "target": 1041,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1048,
+ "target": 1049,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1056,
+ "target": 1057,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -32488,7 +32528,7 @@
}
},
{
- "id": 758,
+ "id": 759,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -32496,22 +32536,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 178,
+ "line": 187,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L187"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 759,
+ "id": 760,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 761,
+ "id": 762,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -32519,9 +32559,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 180,
+ "line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L189"
}
],
"type": {
@@ -32530,7 +32570,7 @@
}
},
{
- "id": 760,
+ "id": 761,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -32538,16 +32578,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 179,
+ "line": 188,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L188"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 757,
+ "target": 758,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -32557,22 +32597,22 @@
"groups": [
{
"title": "Properties",
- "children": [761, 760]
+ "children": [762, 761]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 178,
+ "line": 187,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L187"
}
]
}
}
},
{
- "id": 757,
+ "id": 758,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -32580,9 +32620,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 177,
+ "line": 186,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L186"
}
],
"type": {
@@ -32607,7 +32647,7 @@
}
},
{
- "id": 1038,
+ "id": 1039,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -32615,9 +32655,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 774,
+ "line": 783,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L783"
}
],
"type": {
@@ -32625,13 +32665,13 @@
"types": [
{
"type": "reference",
- "target": 1003,
+ "target": 1004,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1021,
+ "target": 1022,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -32651,7 +32691,7 @@
"fileName": "packages/core/auth-js/src/AuthAdminApi.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/AuthAdminApi.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/AuthAdminApi.ts#L3"
}
],
"type": {
@@ -32678,7 +32718,7 @@
"fileName": "packages/core/auth-js/src/AuthClient.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/AuthClient.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/AuthClient.ts#L3"
}
],
"type": {
@@ -32709,7 +32749,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L6"
}
],
"type": {
@@ -32736,7 +32776,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L10"
}
],
"type": {
@@ -32757,7 +32797,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L6"
}
]
}
@@ -32765,7 +32805,7 @@
"defaultValue": "..."
},
{
- "id": 1382,
+ "id": 1383,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -32775,9 +32815,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1578,
+ "line": 1587,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1578"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1587"
}
],
"type": {
@@ -32804,7 +32844,7 @@
"defaultValue": "..."
},
{
- "id": 1510,
+ "id": 1511,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -32814,12 +32854,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"signatures": [
{
- "id": 1511,
+ "id": 1512,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -32829,12 +32869,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"parameters": [
{
- "id": 1512,
+ "id": 1513,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -32851,7 +32891,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -32860,7 +32900,7 @@
]
},
{
- "id": 1507,
+ "id": 1508,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -32870,12 +32910,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"signatures": [
{
- "id": 1508,
+ "id": 1509,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -32885,12 +32925,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"parameters": [
{
- "id": 1509,
+ "id": 1510,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -32907,7 +32947,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -32916,7 +32956,7 @@
]
},
{
- "id": 1516,
+ "id": 1517,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -32926,12 +32966,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"signatures": [
{
- "id": 1517,
+ "id": 1518,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -32941,12 +32981,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"parameters": [
{
- "id": 1518,
+ "id": 1519,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -32963,7 +33003,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1595,
+ "target": 1596,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -32972,7 +33012,7 @@
]
},
{
- "id": 1519,
+ "id": 1520,
"name": "isAuthPKCECodeVerifierMissingError",
"variant": "declaration",
"kind": 64,
@@ -32982,12 +33022,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 252,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L252"
}
],
"signatures": [
{
- "id": 1520,
+ "id": 1521,
"name": "isAuthPKCECodeVerifierMissingError",
"variant": "signature",
"kind": 4096,
@@ -32997,12 +33037,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 252,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L252"
}
],
"parameters": [
{
- "id": 1521,
+ "id": 1522,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -33019,7 +33059,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1649,
+ "target": 1650,
"name": "AuthPKCECodeVerifierMissingError",
"package": "@supabase/auth-js"
}
@@ -33028,7 +33068,7 @@
]
},
{
- "id": 1522,
+ "id": 1523,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -33038,12 +33078,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"signatures": [
{
- "id": 1523,
+ "id": 1524,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -33053,12 +33093,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"parameters": [
{
- "id": 1524,
+ "id": 1525,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -33075,7 +33115,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1657,
+ "target": 1658,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -33084,7 +33124,7 @@
]
},
{
- "id": 1513,
+ "id": 1514,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -33094,12 +33134,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"signatures": [
{
- "id": 1514,
+ "id": 1515,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -33109,12 +33149,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"parameters": [
{
- "id": 1515,
+ "id": 1516,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -33131,7 +33171,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1570,
+ "target": 1571,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -33140,7 +33180,7 @@
]
},
{
- "id": 1525,
+ "id": 1526,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -33150,12 +33190,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 306,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L306"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L306"
}
],
"signatures": [
{
- "id": 1526,
+ "id": 1527,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -33165,12 +33205,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 306,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L306"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L306"
}
],
"parameters": [
{
- "id": 1527,
+ "id": 1528,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -33187,7 +33227,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -33206,7 +33246,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"signatures": [
@@ -33282,7 +33322,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"typeParameters": [
@@ -33368,7 +33408,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"signatures": [
@@ -33383,7 +33423,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"type": {
@@ -33442,7 +33482,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 223,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L223"
}
],
"signatures": [
@@ -33485,7 +33525,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 223,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L223"
}
],
"typeParameters": [
@@ -33571,7 +33611,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L226"
}
],
"signatures": [
@@ -33586,7 +33626,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L226"
}
],
"type": {
@@ -33639,35 +33679,35 @@
{
"title": "Classes",
"children": [
- 1538, 1528, 1595, 1586, 1679, 1578, 1649, 1622, 1657, 1570, 1548, 1667, 1558, 1, 107, 698
+ 1539, 1529, 1596, 1587, 1680, 1579, 1650, 1623, 1658, 1571, 1549, 1668, 1559, 1, 107, 698
]
},
{
"title": "Interfaces",
"children": [
- 905, 837, 1484, 1112, 1306, 1432, 1175, 1375, 1355, 826, 918, 872, 864, 899, 840, 869, 1048,
- 1040, 1056
+ 906, 838, 1485, 1113, 1307, 1433, 1176, 1376, 1356, 827, 919, 873, 865, 900, 841, 870, 1049,
+ 1041, 1057
]
},
{
"title": "Type Aliases",
"children": [
- 835, 716, 715, 1169, 964, 1296, 1293, 1303, 1300, 1160, 1164, 1159, 1161, 1162, 1163, 1338,
- 1155, 1337, 1339, 1170, 1165, 1156, 1154, 1147, 1474, 1475, 1481, 1482, 793, 784, 788, 798,
- 802, 1319, 1404, 1060, 1020, 1021, 853, 852, 1106, 1096, 1115, 1120, 1116, 1127, 1101, 1090,
- 726, 1316, 1340, 717, 1146, 1145, 1143, 1142, 1144, 1128, 1335, 1334, 1336, 1141, 1129,
- 1140, 1133, 1132, 1134, 1138, 1059, 1455, 1461, 1388, 1384, 1420, 1387, 1419, 1385, 1386,
- 1476, 1471, 807, 1327, 1320, 762, 714, 767, 776, 1345, 1061, 928, 977, 965, 942, 947, 1075,
- 1331, 1383, 934, 987, 1003, 820, 764, 1313, 1412, 823, 1039, 758, 757, 1038
+ 836, 716, 715, 1170, 965, 1297, 1294, 1304, 1301, 1161, 1165, 1160, 1162, 1163, 1164, 1339,
+ 1156, 1338, 1340, 1171, 1166, 1157, 1155, 1148, 1475, 1476, 1482, 1483, 794, 785, 789, 799,
+ 803, 1320, 1405, 1061, 1021, 1022, 854, 853, 1107, 1097, 1116, 1121, 1117, 1128, 1102, 1091,
+ 726, 1317, 1341, 717, 1147, 1146, 1144, 1143, 1145, 1129, 1336, 1335, 1337, 1142, 1130,
+ 1141, 1134, 1133, 1135, 1139, 1060, 1456, 1462, 1389, 1385, 1421, 1388, 1420, 1386, 1387,
+ 1477, 1472, 808, 1328, 1321, 763, 714, 768, 777, 1346, 1062, 929, 978, 966, 943, 948, 1076,
+ 1332, 1384, 935, 988, 1004, 821, 765, 1314, 1413, 824, 1040, 759, 758, 1039
]
},
{
"title": "Variables",
- "children": [688, 689, 703, 1382]
+ "children": [688, 689, 703, 1383]
},
{
"title": "Functions",
- "children": [1510, 1507, 1516, 1519, 1522, 1513, 1525, 690, 706]
+ "children": [1511, 1508, 1517, 1520, 1523, 1514, 1526, 690, 706]
}
],
"packageName": "@supabase/auth-js",
@@ -35173,651 +35213,651 @@
},
"757": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "WeakPasswordReasons"
+ "qualifiedName": "__type.skipAutoInitialize"
},
"758": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "WeakPassword"
+ "qualifiedName": "WeakPasswordReasons"
},
"759": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WeakPassword"
},
"760": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.reasons"
+ "qualifiedName": "__type"
},
"761": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.reasons"
},
"762": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Prettify"
+ "qualifiedName": "__type.message"
},
"763": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "Prettify"
},
"764": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "StrictOmit"
+ "qualifiedName": "T"
},
"765": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "StrictOmit"
},
"766": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "K"
+ "qualifiedName": "T"
},
"767": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "RequestResult"
+ "qualifiedName": "K"
},
"768": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RequestResult"
},
"769": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"770": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"771": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"772": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"773": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"774": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.error"
},
"775": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "ErrorType"
+ "qualifiedName": "T"
},
"776": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "RequestResultSafeDestructure"
+ "qualifiedName": "ErrorType"
},
"777": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RequestResultSafeDestructure"
},
"778": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"779": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"780": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"781": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"782": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"783": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.error"
},
"784": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthResponse"
+ "qualifiedName": "T"
},
"785": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthResponse"
},
"786": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"787": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"788": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthResponsePassword"
+ "qualifiedName": "__type.session"
},
"789": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthResponsePassword"
},
"790": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"791": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"792": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.weak_password"
+ "qualifiedName": "__type.session"
},
"793": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOtpResponse"
+ "qualifiedName": "__type.weak_password"
},
"794": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOtpResponse"
},
"795": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"796": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"797": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.messageId"
+ "qualifiedName": "__type.session"
},
"798": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthTokenResponse"
+ "qualifiedName": "__type.messageId"
},
"799": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthTokenResponse"
},
"800": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"801": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"802": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthTokenResponsePassword"
+ "qualifiedName": "__type.session"
},
"803": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthTokenResponsePassword"
},
"804": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"805": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"806": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.weakPassword"
+ "qualifiedName": "__type.session"
},
"807": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthResponse"
+ "qualifiedName": "__type.weakPassword"
},
"808": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthResponse"
},
"809": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"810": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"811": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"812": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.provider"
},
"813": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.url"
},
"814": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"815": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"816": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"817": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"818": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.provider"
},
"819": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.url"
},
"820": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SSOResponse"
+ "qualifiedName": "__type.error"
},
"821": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SSOResponse"
},
"822": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"823": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserResponse"
+ "qualifiedName": "__type.url"
},
"824": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UserResponse"
},
"825": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"826": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session"
+ "qualifiedName": "__type.user"
},
"827": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.provider_token"
+ "qualifiedName": "Session"
},
"828": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.provider_refresh_token"
+ "qualifiedName": "Session.provider_token"
},
"829": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.access_token"
+ "qualifiedName": "Session.provider_refresh_token"
},
"830": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.refresh_token"
+ "qualifiedName": "Session.access_token"
},
"831": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.expires_in"
+ "qualifiedName": "Session.refresh_token"
},
"832": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.expires_at"
+ "qualifiedName": "Session.expires_in"
},
"833": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.token_type"
+ "qualifiedName": "Session.expires_at"
},
"834": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.user"
+ "qualifiedName": "Session.token_type"
},
"835": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMRMethod"
+ "qualifiedName": "Session.user"
},
"836": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AMRMethod"
},
"837": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMREntry"
+ "qualifiedName": "__type"
},
"838": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMREntry.method"
+ "qualifiedName": "AMREntry"
},
"839": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMREntry.timestamp"
+ "qualifiedName": "AMREntry.method"
},
"840": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity"
+ "qualifiedName": "AMREntry.timestamp"
},
"841": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity.id"
+ "qualifiedName": "UserIdentity"
},
"842": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity.user_id"
+ "qualifiedName": "UserIdentity.id"
},
"843": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity.identity_data"
+ "qualifiedName": "UserIdentity.user_id"
},
"844": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UserIdentity.identity_data"
},
"845": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "846": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "847": {
+ "848": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "848": {
+ "849": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "849": {
+ "850": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "850": {
+ "851": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "851": {
+ "852": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "852": {
+ "853": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "853": {
+ "854": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Factor"
},
- "854": {
+ "855": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "855": {
+ "856": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "856": {
+ "857": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "857": {
+ "858": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "858": {
+ "859": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "859": {
+ "860": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "860": {
+ "861": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "861": {
+ "862": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.last_challenged_at"
},
- "862": {
+ "863": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Type"
},
- "863": {
+ "864": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Status"
},
- "864": {
+ "865": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "865": {
+ "866": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.provider"
},
- "866": {
+ "867": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.providers"
},
- "867": {
+ "868": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.__index"
},
- "869": {
+ "870": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata"
},
- "870": {
+ "871": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata.__index"
},
- "872": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User"
- },
"873": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.id"
+ "qualifiedName": "User"
},
"874": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.app_metadata"
+ "qualifiedName": "User.id"
},
"875": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.user_metadata"
+ "qualifiedName": "User.app_metadata"
},
"876": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.aud"
+ "qualifiedName": "User.user_metadata"
},
"877": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.confirmation_sent_at"
+ "qualifiedName": "User.aud"
},
"878": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.recovery_sent_at"
+ "qualifiedName": "User.confirmation_sent_at"
},
"879": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email_change_sent_at"
+ "qualifiedName": "User.recovery_sent_at"
},
"880": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.new_email"
+ "qualifiedName": "User.email_change_sent_at"
},
"881": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.new_phone"
+ "qualifiedName": "User.new_email"
},
"882": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.invited_at"
+ "qualifiedName": "User.new_phone"
},
"883": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.action_link"
+ "qualifiedName": "User.invited_at"
},
"884": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email"
+ "qualifiedName": "User.action_link"
},
"885": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.phone"
+ "qualifiedName": "User.email"
},
"886": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.created_at"
+ "qualifiedName": "User.phone"
},
"887": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.confirmed_at"
+ "qualifiedName": "User.created_at"
},
"888": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email_confirmed_at"
+ "qualifiedName": "User.confirmed_at"
},
"889": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.phone_confirmed_at"
+ "qualifiedName": "User.email_confirmed_at"
},
"890": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.last_sign_in_at"
+ "qualifiedName": "User.phone_confirmed_at"
},
"891": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.role"
+ "qualifiedName": "User.last_sign_in_at"
},
"892": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.updated_at"
+ "qualifiedName": "User.role"
},
"893": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.identities"
+ "qualifiedName": "User.updated_at"
},
"894": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.is_anonymous"
+ "qualifiedName": "User.identities"
},
"895": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.is_sso_user"
+ "qualifiedName": "User.is_anonymous"
},
"896": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.factors"
+ "qualifiedName": "User.is_sso_user"
},
"897": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.deleted_at"
+ "qualifiedName": "User.factors"
},
"898": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.banned_until"
+ "qualifiedName": "User.deleted_at"
},
"899": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes"
+ "qualifiedName": "User.banned_until"
},
"900": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.email"
+ "qualifiedName": "UserAttributes"
},
"901": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.phone"
+ "qualifiedName": "UserAttributes.email"
},
"902": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.password"
+ "qualifiedName": "UserAttributes.phone"
},
"903": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.nonce"
+ "qualifiedName": "UserAttributes.password"
},
"904": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.data"
+ "qualifiedName": "UserAttributes.nonce"
},
"905": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes"
+ "qualifiedName": "UserAttributes.data"
},
"906": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.user_metadata"
+ "qualifiedName": "AdminUserAttributes"
},
"907": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.app_metadata"
+ "qualifiedName": "AdminUserAttributes.user_metadata"
},
"908": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.email_confirm"
+ "qualifiedName": "AdminUserAttributes.app_metadata"
},
"909": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.phone_confirm"
+ "qualifiedName": "AdminUserAttributes.email_confirm"
},
"910": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.ban_duration"
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
},
"911": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.role"
+ "qualifiedName": "AdminUserAttributes.ban_duration"
},
"912": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.password_hash"
+ "qualifiedName": "AdminUserAttributes.role"
},
"913": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.id"
+ "qualifiedName": "AdminUserAttributes.password_hash"
},
"914": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "nonce"
+ "qualifiedName": "AdminUserAttributes.id"
},
"915": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "nonce"
},
"916": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "email"
+ "qualifiedName": "phone"
},
"917": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "password"
+ "qualifiedName": "email"
},
"918": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription"
+ "qualifiedName": "password"
},
"919": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.id"
+ "qualifiedName": "Subscription"
},
"920": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.callback"
+ "qualifiedName": "Subscription.id"
},
"921": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.callback"
},
"922": {
"sourceFileName": "src/lib/types.ts",
@@ -35825,19 +35865,19 @@
},
"923": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type"
},
"924": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "session"
+ "qualifiedName": "event"
},
"925": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.unsubscribe"
+ "qualifiedName": "session"
},
"926": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.unsubscribe"
},
"927": {
"sourceFileName": "src/lib/types.ts",
@@ -35845,251 +35885,251 @@
},
"928": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInAnonymouslyCredentials"
+ "qualifiedName": "__type"
},
"929": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInAnonymouslyCredentials"
},
"930": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"931": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"932": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"933": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"934": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignUpWithPasswordCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"935": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignUpWithPasswordCredentials"
},
"936": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"937": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"938": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"939": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.emailRedirectTo"
},
"940": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"941": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.captchaToken"
},
"942": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordCredentials"
+ "qualifiedName": "__type.channel"
},
"943": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithPasswordCredentials"
},
"944": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"945": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"946": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"947": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordlessCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"948": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithPasswordlessCredentials"
},
"949": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"950": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"951": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"952": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"953": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type.emailRedirectTo"
},
"954": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.shouldCreateUser"
},
"955": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"956": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"957": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type"
},
"958": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"959": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"960": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type"
},
"961": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.shouldCreateUser"
},
"962": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"963": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.captchaToken"
},
"964": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthFlowType"
+ "qualifiedName": "__type.channel"
},
"965": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithOAuthCredentials"
+ "qualifiedName": "AuthFlowType"
},
"966": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithOAuthCredentials"
},
"967": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"968": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.provider"
},
"969": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"970": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"971": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type.redirectTo"
},
"972": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.queryParams"
+ "qualifiedName": "__type.scopes"
},
"973": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.queryParams"
},
"974": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "976": {
+ "975": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.__index"
},
"977": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithIdTokenCredentials"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"978": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithIdTokenCredentials"
},
"979": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"980": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.provider"
},
"981": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token"
+ "qualifiedName": "__type"
},
"982": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type.token"
},
"983": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nonce"
+ "qualifiedName": "__type.access_token"
},
"984": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.nonce"
},
"985": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"986": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"987": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWallet"
+ "qualifiedName": "__type.captchaToken"
},
"988": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWallet"
},
"989": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signIn"
+ "qualifiedName": "__type"
},
"990": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signIn"
},
"991": {
"sourceFileName": "src/lib/types.ts",
@@ -36097,23 +36137,23 @@
},
"992": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "inputs"
+ "qualifiedName": "__type"
},
"993": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "inputs"
},
"994": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"995": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.toBase58"
+ "qualifiedName": "__type"
},
"996": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.toBase58"
},
"997": {
"sourceFileName": "src/lib/types.ts",
@@ -36121,11 +36161,11 @@
},
"998": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signMessage"
+ "qualifiedName": "__type"
},
"999": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signMessage"
},
"1000": {
"sourceFileName": "src/lib/types.ts",
@@ -36133,707 +36173,707 @@
},
"1001": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "message"
+ "qualifiedName": "__type"
},
"1002": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "encoding"
+ "qualifiedName": "message"
},
"1003": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWeb3Credentials"
+ "qualifiedName": "encoding"
},
"1004": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWeb3Credentials"
},
"1005": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1006": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.chain"
},
"1007": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.wallet"
},
"1008": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.statement"
},
"1009": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1010": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"1011": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.url"
},
"1012": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithSolana"
+ "qualifiedName": "__type.captchaToken"
},
"1013": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signInWithSolana"
},
"1014": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1015": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.chain"
},
"1016": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.message"
},
"1017": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.signature"
},
"1018": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1019": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1020": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWallet"
+ "qualifiedName": "__type.captchaToken"
},
"1021": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWeb3Credentials"
+ "qualifiedName": "EthereumWallet"
},
"1022": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EthereumWeb3Credentials"
},
"1023": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1024": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.chain"
},
"1025": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.wallet"
},
"1026": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.statement"
},
"1027": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1028": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"1029": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.url"
},
"1030": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithEthereum"
+ "qualifiedName": "__type.captchaToken"
},
"1031": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signInWithEthereum"
},
"1032": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1033": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.chain"
},
"1034": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.message"
},
"1035": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.signature"
},
"1036": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1037": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1038": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Web3Credentials"
+ "qualifiedName": "__type.captchaToken"
},
"1039": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyOtpParams"
+ "qualifiedName": "Web3Credentials"
},
"1040": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams"
+ "qualifiedName": "VerifyOtpParams"
},
"1041": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.phone"
+ "qualifiedName": "VerifyMobileOtpParams"
},
"1042": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.token"
+ "qualifiedName": "VerifyMobileOtpParams.phone"
},
"1043": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.type"
+ "qualifiedName": "VerifyMobileOtpParams.token"
},
"1044": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.options"
+ "qualifiedName": "VerifyMobileOtpParams.type"
},
"1045": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyMobileOtpParams.options"
},
"1046": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1047": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1048": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams"
+ "qualifiedName": "__type.captchaToken"
},
"1049": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.email"
+ "qualifiedName": "VerifyEmailOtpParams"
},
"1050": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.token"
+ "qualifiedName": "VerifyEmailOtpParams.email"
},
"1051": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.type"
+ "qualifiedName": "VerifyEmailOtpParams.token"
},
"1052": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.options"
+ "qualifiedName": "VerifyEmailOtpParams.type"
},
"1053": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyEmailOtpParams.options"
},
"1054": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1055": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1056": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams"
+ "qualifiedName": "__type.captchaToken"
},
"1057": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.token_hash"
+ "qualifiedName": "VerifyTokenHashParams"
},
"1058": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.type"
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
},
"1059": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MobileOtpType"
+ "qualifiedName": "VerifyTokenHashParams.type"
},
"1060": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EmailOtpType"
+ "qualifiedName": "MobileOtpType"
},
"1061": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "ResendParams"
+ "qualifiedName": "EmailOtpType"
},
"1062": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "ResendParams"
},
"1063": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1064": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1065": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1066": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1067": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"1068": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.emailRedirectTo"
},
"1069": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1070": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1071": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.type"
},
"1072": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"1073": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1074": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1075": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithSSO"
+ "qualifiedName": "__type.captchaToken"
},
"1076": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithSSO"
},
"1077": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.providerId"
+ "qualifiedName": "__type"
},
"1078": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.providerId"
},
"1079": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1080": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1081": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1082": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.captchaToken"
},
"1083": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1084": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.domain"
+ "qualifiedName": "__type"
},
"1085": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.domain"
},
"1086": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1087": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1088": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1089": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.captchaToken"
},
"1090": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateSignupLinkParams"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1091": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateSignupLinkParams"
},
"1092": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1093": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1094": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.password"
+ "qualifiedName": "__type.email"
},
"1095": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.password"
},
"1096": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ "qualifiedName": "__type.options"
},
"1097": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
},
"1098": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1099": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1100": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1101": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateRecoveryLinkParams"
+ "qualifiedName": "__type.options"
},
"1102": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateRecoveryLinkParams"
},
"1103": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1104": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1105": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1106": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateEmailChangeLinkParams"
+ "qualifiedName": "__type.options"
},
"1107": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateEmailChangeLinkParams"
},
"1108": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1109": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1110": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.newEmail"
+ "qualifiedName": "__type.email"
},
"1111": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.newEmail"
},
"1112": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions"
+ "qualifiedName": "__type.options"
},
"1113": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.data"
+ "qualifiedName": "GenerateLinkOptions"
},
"1114": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.redirectTo"
+ "qualifiedName": "GenerateLinkOptions.data"
},
"1115": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkParams"
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
},
"1116": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkResponse"
+ "qualifiedName": "GenerateLinkParams"
},
"1117": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkResponse"
},
"1118": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.properties"
+ "qualifiedName": "__type"
},
"1119": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.properties"
},
"1120": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkProperties"
+ "qualifiedName": "__type.user"
},
"1121": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkProperties"
},
"1122": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.action_link"
+ "qualifiedName": "__type"
},
"1123": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email_otp"
+ "qualifiedName": "__type.action_link"
},
"1124": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.hashed_token"
+ "qualifiedName": "__type.email_otp"
},
"1125": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_to"
+ "qualifiedName": "__type.hashed_token"
},
"1126": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.verification_type"
+ "qualifiedName": "__type.redirect_to"
},
"1127": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkType"
+ "qualifiedName": "__type.verification_type"
},
"1128": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollParams"
+ "qualifiedName": "GenerateLinkType"
},
"1129": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAUnenrollParams"
+ "qualifiedName": "MFAEnrollParams"
},
"1130": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAUnenrollParams"
},
"1131": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factorId"
+ "qualifiedName": "__type"
},
"1132": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyTOTPParams"
+ "qualifiedName": "__type.factorId"
},
"1133": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyPhoneParams"
+ "qualifiedName": "MFAVerifyTOTPParams"
},
"1134": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFields"
+ "qualifiedName": "MFAVerifyPhoneParams"
},
"1135": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
},
"1136": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.webauthn"
+ "qualifiedName": "__type"
},
"1137": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.webauthn"
},
"1138": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParams"
+ "qualifiedName": "T"
},
"1139": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "MFAVerifyWebauthnParams"
},
"1140": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyParams"
+ "qualifiedName": "T"
},
"1141": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFATOTPChannel"
+ "qualifiedName": "MFAVerifyParams"
},
"1142": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeTOTPParams"
+ "qualifiedName": "MFATOTPChannel"
},
"1143": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengePhoneParams"
+ "qualifiedName": "MFAChallengeTOTPParams"
},
"1144": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeWebauthnParams"
+ "qualifiedName": "MFAChallengePhoneParams"
},
"1145": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeParams"
+ "qualifiedName": "MFAChallengeWebauthnParams"
},
"1146": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeAndVerifyParams"
+ "qualifiedName": "MFAChallengeParams"
},
"1147": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponseData"
+ "qualifiedName": "MFAChallengeAndVerifyParams"
},
"1148": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAVerifyResponseData"
},
"1149": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type"
},
"1150": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_type"
+ "qualifiedName": "__type.access_token"
},
"1151": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.expires_in"
+ "qualifiedName": "__type.token_type"
},
"1152": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.refresh_token"
+ "qualifiedName": "__type.expires_in"
},
"1153": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.refresh_token"
},
"1154": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponse"
+ "qualifiedName": "__type.user"
},
"1155": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollResponse"
+ "qualifiedName": "AuthMFAVerifyResponse"
},
"1156": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAUnenrollResponse"
+ "qualifiedName": "AuthMFAEnrollResponse"
},
"1157": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAUnenrollResponse"
},
"1158": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1159": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ "qualifiedName": "__type.id"
},
"1160": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengePhoneResponse"
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
},
"1161": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
},
"1162": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
"1163": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
"1164": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
"1165": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAListFactorsResponse"
+ "qualifiedName": "AuthMFAChallengeResponse"
},
"1166": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAListFactorsResponse"
},
"1167": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.all"
+ "qualifiedName": "__type"
},
"1168": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.all"
},
"1169": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthenticatorAssuranceLevels"
+ "qualifiedName": "T"
},
"1170": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ "qualifiedName": "AuthenticatorAssuranceLevels"
},
"1171": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
"1172": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentLevel"
+ "qualifiedName": "__type"
},
"1173": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextLevel"
+ "qualifiedName": "__type.currentLevel"
},
"1174": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentAuthenticationMethods"
+ "qualifiedName": "__type.nextLevel"
},
"1175": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi"
+ "qualifiedName": "__type.currentAuthenticationMethods"
},
"1176": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "GoTrueMFAApi"
},
"1177": {
"sourceFileName": "src/lib/types.ts",
@@ -36841,79 +36881,79 @@
},
"1178": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1179": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1180": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1181": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1182": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "issuer"
+ "qualifiedName": "friendlyName"
},
"1183": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "issuer"
},
"1184": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1185": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1186": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1187": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1188": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "friendlyName"
},
"1189": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "phone"
},
"1190": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1191": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1192": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1193": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1194": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1195": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1196": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "params"
},
"1197": {
"sourceFileName": "src/lib/types.ts",
@@ -36921,243 +36961,243 @@
},
"1198": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1199": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1200": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1201": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1202": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1203": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1204": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1205": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1206": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1207": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1208": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1209": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1210": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "expires_at"
},
"1211": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1212": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1213": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1214": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1215": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "factorId"
},
"1216": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "channel"
},
"1217": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1218": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1219": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1220": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1221": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1222": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1223": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1224": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1225": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "expires_at"
},
"1226": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1227": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1228": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1229": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1230": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "factorId"
},
"1231": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1232": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpId"
+ "qualifiedName": "__type"
},
"1233": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpOrigins"
+ "qualifiedName": "__type.rpId"
},
"1234": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.rpOrigins"
},
"1235": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1236": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1237": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1238": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1239": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1240": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1241": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1242": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1243": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "expires_at"
},
"1244": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1245": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1246": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type.type"
},
"1247": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.credential_options"
},
"1248": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"1249": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"1250": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1251": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type.type"
},
"1252": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.credential_options"
},
"1253": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"1254": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type.publicKey"
},
"1255": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1256": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1257": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "params"
},
"1258": {
"sourceFileName": "src/lib/types.ts",
@@ -37165,83 +37205,83 @@
},
"1259": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1260": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1261": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1262": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1263": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1264": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1265": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1266": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1267": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1268": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1269": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1270": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1271": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1272": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1273": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1274": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1275": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "challengeId"
},
"1276": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "webauthn"
},
"1277": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1278": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "params"
},
"1279": {
"sourceFileName": "src/lib/types.ts",
@@ -37249,11 +37289,11 @@
},
"1280": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1281": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "params"
},
"1282": {
"sourceFileName": "src/lib/types.ts",
@@ -37261,23 +37301,23 @@
},
"1283": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1284": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1285": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1286": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "factorId"
},
"1287": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "code"
},
"1288": {
"sourceFileName": "src/lib/types.ts",
@@ -37285,7 +37325,7 @@
},
"1289": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1290": {
"sourceFileName": "src/lib/types.ts",
@@ -37293,71 +37333,71 @@
},
"1291": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "jwt"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1292": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.webauthn"
+ "qualifiedName": "jwt"
},
"1293": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ "qualifiedName": "GoTrueMFAApi.webauthn"
},
"1294": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
"1295": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1296": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ "qualifiedName": "__type.id"
},
"1297": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
"1298": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1299": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type.id"
},
"1300": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ "qualifiedName": "__type.userId"
},
"1301": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
},
"1302": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factors"
+ "qualifiedName": "__type"
},
"1303": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsParams"
+ "qualifiedName": "__type.factors"
},
"1304": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
},
"1305": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type"
},
"1306": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi"
+ "qualifiedName": "__type.userId"
},
"1307": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "GoTrueAdminMFAApi"
},
"1308": {
"sourceFileName": "src/lib/types.ts",
@@ -37365,11 +37405,11 @@
},
"1309": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1310": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "params"
},
"1311": {
"sourceFileName": "src/lib/types.ts",
@@ -37377,479 +37417,479 @@
},
"1312": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1313": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupportedStorage"
+ "qualifiedName": "params"
},
"1314": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SupportedStorage"
},
"1315": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.isServer"
+ "qualifiedName": "__type"
},
"1316": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "InitializeResult"
+ "qualifiedName": "__type.isServer"
},
"1317": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "InitializeResult"
},
"1318": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type"
},
"1319": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CallRefreshTokenResult"
+ "qualifiedName": "__type.error"
},
"1320": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Pagination"
+ "qualifiedName": "CallRefreshTokenResult"
},
"1321": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Pagination"
},
"1322": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextPage"
+ "qualifiedName": "__type"
},
"1323": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.lastPage"
+ "qualifiedName": "__type.nextPage"
},
"1324": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.total"
+ "qualifiedName": "__type.lastPage"
},
"1325": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.total"
+ },
+ "1326": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "1327": {
+ "1328": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "PageParams"
},
- "1328": {
+ "1329": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1329": {
+ "1330": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.page"
},
- "1330": {
+ "1331": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.perPage"
},
- "1331": {
+ "1332": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignOut"
},
- "1332": {
+ "1333": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1333": {
+ "1334": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.scope"
},
- "1334": {
+ "1335": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollTOTPParams"
},
- "1335": {
+ "1336": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollPhoneParams"
},
- "1336": {
+ "1337": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollWebauthnParams"
},
- "1337": {
+ "1338": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollTOTPResponse"
},
- "1338": {
+ "1339": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollPhoneResponse"
},
- "1339": {
+ "1340": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
- "1340": {
+ "1341": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtHeader"
},
- "1341": {
+ "1342": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1342": {
+ "1343": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.alg"
},
- "1343": {
+ "1344": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.kid"
},
- "1344": {
+ "1345": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.typ"
},
- "1345": {
+ "1346": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequiredClaims"
},
- "1346": {
+ "1347": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1347": {
+ "1348": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1348": {
+ "1349": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1349": {
+ "1350": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1350": {
+ "1351": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1351": {
+ "1352": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1352": {
+ "1353": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1353": {
+ "1354": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1354": {
+ "1355": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1355": {
+ "1356": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload"
},
- "1356": {
+ "1357": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.email"
},
- "1357": {
+ "1358": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.phone"
},
- "1358": {
+ "1359": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.is_anonymous"
},
- "1359": {
+ "1360": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.jti"
},
- "1360": {
+ "1361": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.nbf"
},
- "1361": {
+ "1362": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.app_metadata"
},
- "1362": {
+ "1363": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.user_metadata"
},
- "1363": {
+ "1364": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.amr"
},
- "1364": {
+ "1365": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.ref"
},
- "1365": {
+ "1366": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1366": {
+ "1367": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1367": {
+ "1368": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1368": {
+ "1369": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1369": {
+ "1370": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1370": {
+ "1371": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1371": {
+ "1372": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1372": {
+ "1373": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1373": {
+ "1374": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.__index"
},
- "1375": {
+ "1376": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK"
},
- "1376": {
+ "1377": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.kty"
},
- "1377": {
+ "1378": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.key_ops"
},
- "1378": {
+ "1379": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.alg"
},
- "1379": {
+ "1380": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.kid"
},
- "1380": {
+ "1381": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.__index"
},
- "1382": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SIGN_OUT_SCOPES"
- },
"1383": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignOutScope"
+ "qualifiedName": "SIGN_OUT_SCOPES"
},
"1384": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientGrantType"
+ "qualifiedName": "SignOutScope"
},
"1385": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponseType"
+ "qualifiedName": "OAuthClientGrantType"
},
"1386": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientType"
+ "qualifiedName": "OAuthClientResponseType"
},
"1387": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientRegistrationType"
+ "qualifiedName": "OAuthClientType"
},
"1388": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClient"
+ "qualifiedName": "OAuthClientRegistrationType"
},
"1389": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClient"
},
"1390": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "__type"
},
"1391": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.client_id"
},
"1392": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_secret"
+ "qualifiedName": "__type.client_name"
},
"1393": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "__type.client_secret"
},
"1394": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "__type.client_type"
},
"1395": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "__type.token_endpoint_auth_method"
},
"1396": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.registration_type"
},
"1397": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_uri"
},
"1398": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.logo_uri"
},
"1399": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1400": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.grant_types"
},
"1401": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.response_types"
},
"1402": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "__type.scope"
},
"1403": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "__type.created_at"
},
"1404": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "__type.updated_at"
},
"1405": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "CreateOAuthClientParams"
},
"1406": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1407": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.client_name"
},
"1408": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
"1409": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1410": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.grant_types"
},
"1411": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.response_types"
},
"1412": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UpdateOAuthClientParams"
+ "qualifiedName": "__type.scope"
},
"1413": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UpdateOAuthClientParams"
},
"1414": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1415": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.client_name"
},
"1416": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_uri"
},
"1417": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.logo_uri"
},
"1418": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1419": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "__type.grant_types"
},
"1420": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "OAuthClientResponse"
},
"1421": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientListResponse"
},
"1422": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1423": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1424": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1425": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.clients"
},
"1426": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.aud"
},
"1427": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"1428": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1429": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1430": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1431": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.clients"
},
"1432": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "__type.error"
},
"1433": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "GoTrueAdminOAuthApi"
},
"1434": {
"sourceFileName": "src/lib/types.ts",
@@ -37857,11 +37897,11 @@
},
"1435": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1436": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "params"
},
"1437": {
"sourceFileName": "src/lib/types.ts",
@@ -37869,11 +37909,11 @@
},
"1438": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1439": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "params"
},
"1440": {
"sourceFileName": "src/lib/types.ts",
@@ -37881,11 +37921,11 @@
},
"1441": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1442": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "clientId"
},
"1443": {
"sourceFileName": "src/lib/types.ts",
@@ -37893,15 +37933,15 @@
},
"1444": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1445": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "clientId"
},
"1446": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "params"
},
"1447": {
"sourceFileName": "src/lib/types.ts",
@@ -37909,23 +37949,23 @@
},
"1448": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1449": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "clientId"
},
"1450": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1451": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"1452": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type.error"
},
"1453": {
"sourceFileName": "src/lib/types.ts",
@@ -37933,131 +37973,131 @@
},
"1454": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1455": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationClient"
+ "qualifiedName": "clientId"
},
"1456": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationClient"
},
"1457": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1458": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.name"
+ "qualifiedName": "__type.id"
},
"1459": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.uri"
+ "qualifiedName": "__type.name"
},
"1460": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.uri"
},
"1461": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationDetails"
+ "qualifiedName": "__type.logo_uri"
},
"1462": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
"1463": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.authorization_id"
+ "qualifiedName": "__type"
},
"1464": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uri"
+ "qualifiedName": "__type.authorization_id"
},
"1465": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type.redirect_uri"
},
"1466": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.client"
},
"1467": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.user"
},
"1468": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1469": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.id"
},
"1470": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.email"
},
"1471": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthRedirect"
+ "qualifiedName": "__type.scope"
},
"1472": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthRedirect"
},
"1473": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_url"
+ "qualifiedName": "__type"
},
"1474": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ "qualifiedName": "__type.redirect_url"
},
"1475": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthConsentResponse"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
"1476": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthGrant"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
"1477": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthGrant"
},
"1478": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type"
},
"1479": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type.client"
},
"1480": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.granted_at"
+ "qualifiedName": "__type.scopes"
},
"1481": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthGrantsResponse"
+ "qualifiedName": "__type.granted_at"
},
"1482": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthRevokeGrantResponse"
+ "qualifiedName": "AuthOAuthGrantsResponse"
},
"1483": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthRevokeGrantResponse"
},
"1484": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi"
+ "qualifiedName": "__type"
},
"1485": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "AuthOAuthServerApi"
},
"1486": {
"sourceFileName": "src/lib/types.ts",
@@ -38065,11 +38105,11 @@
},
"1487": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
"1488": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "authorizationId"
},
"1489": {
"sourceFileName": "src/lib/types.ts",
@@ -38077,23 +38117,23 @@
},
"1490": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
"1491": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1492": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1493": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1494": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1495": {
"sourceFileName": "src/lib/types.ts",
@@ -38101,23 +38141,23 @@
},
"1496": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
},
"1497": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1498": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1499": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1500": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.listGrants"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1501": {
"sourceFileName": "src/lib/types.ts",
@@ -38125,7 +38165,7 @@
},
"1502": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
},
"1503": {
"sourceFileName": "src/lib/types.ts",
@@ -38133,19 +38173,19 @@
},
"1504": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
},
"1505": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1506": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clientId"
+ "qualifiedName": "__type"
},
"1507": {
- "sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthError"
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.clientId"
},
"1508": {
"sourceFileName": "src/lib/errors.ts",
@@ -38153,11 +38193,11 @@
},
"1509": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthError"
},
"1510": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthApiError"
+ "qualifiedName": "error"
},
"1511": {
"sourceFileName": "src/lib/errors.ts",
@@ -38165,11 +38205,11 @@
},
"1512": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthApiError"
},
"1513": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthSessionMissingError"
+ "qualifiedName": "error"
},
"1514": {
"sourceFileName": "src/lib/errors.ts",
@@ -38177,11 +38217,11 @@
},
"1515": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthSessionMissingError"
},
"1516": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthImplicitGrantRedirectError"
+ "qualifiedName": "error"
},
"1517": {
"sourceFileName": "src/lib/errors.ts",
@@ -38189,11 +38229,11 @@
},
"1518": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthImplicitGrantRedirectError"
},
"1519": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthPKCECodeVerifierMissingError"
+ "qualifiedName": "error"
},
"1520": {
"sourceFileName": "src/lib/errors.ts",
@@ -38201,11 +38241,11 @@
},
"1521": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthPKCECodeVerifierMissingError"
},
"1522": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthRetryableFetchError"
+ "qualifiedName": "error"
},
"1523": {
"sourceFileName": "src/lib/errors.ts",
@@ -38213,11 +38253,11 @@
},
"1524": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthRetryableFetchError"
},
"1525": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthWeakPasswordError"
+ "qualifiedName": "error"
},
"1526": {
"sourceFileName": "src/lib/errors.ts",
@@ -38225,593 +38265,597 @@
},
"1527": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthWeakPasswordError"
},
"1528": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError"
+ "qualifiedName": "error"
},
"1529": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError.__constructor"
+ "qualifiedName": "AuthError"
},
"1530": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError"
+ "qualifiedName": "AuthError.__constructor"
},
"1531": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "message"
+ "qualifiedName": "AuthError"
},
"1532": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "status"
+ "qualifiedName": "message"
},
"1533": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "code"
+ "qualifiedName": "status"
},
"1534": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError.code"
+ "qualifiedName": "code"
},
"1535": {
+ "sourceFileName": "src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1536": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1536": {
+ "1537": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1538": {
+ "1539": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1539": {
+ "1540": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1540": {
+ "1541": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1541": {
+ "1542": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1542": {
+ "1543": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1543": {
+ "1544": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1544": {
+ "1545": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1545": {
+ "1546": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1546": {
+ "1547": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1548": {
+ "1549": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1549": {
+ "1550": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1550": {
+ "1551": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1551": {
+ "1552": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1552": {
+ "1553": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1553": {
+ "1554": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1554": {
+ "1555": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1555": {
+ "1556": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1556": {
+ "1557": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1558": {
+ "1559": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1559": {
+ "1560": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1560": {
+ "1561": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1561": {
+ "1562": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1562": {
+ "1563": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "name"
},
- "1563": {
+ "1564": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1564": {
+ "1565": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1565": {
+ "1566": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1566": {
+ "1567": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1567": {
+ "1568": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1568": {
+ "1569": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1570": {
+ "1571": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1571": {
+ "1572": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1572": {
+ "1573": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1573": {
+ "1574": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1574": {
+ "1575": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1575": {
+ "1576": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1576": {
+ "1577": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1578": {
+ "1579": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1579": {
+ "1580": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1580": {
+ "1581": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1581": {
+ "1582": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1582": {
+ "1583": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1583": {
+ "1584": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1584": {
+ "1585": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1586": {
+ "1587": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1587": {
+ "1588": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1588": {
+ "1589": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1589": {
+ "1590": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1590": {
+ "1591": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1591": {
+ "1592": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1592": {
+ "1593": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1593": {
+ "1594": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1595": {
+ "1596": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1596": {
+ "1597": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1597": {
+ "1598": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1598": {
+ "1599": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1599": {
+ "1600": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1600": {
+ "1601": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1601": {
+ "1602": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1602": {
+ "1603": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1603": {
+ "1604": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1604": {
+ "1605": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1605": {
+ "1606": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1606": {
+ "1607": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1607": {
+ "1608": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1608": {
+ "1609": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1609": {
+ "1610": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1610": {
+ "1611": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1611": {
+ "1612": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1612": {
+ "1613": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1613": {
+ "1614": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1614": {
+ "1615": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1615": {
+ "1616": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1616": {
+ "1617": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1617": {
+ "1618": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1618": {
+ "1619": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1619": {
+ "1620": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1620": {
+ "1621": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1622": {
+ "1623": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1623": {
+ "1624": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1624": {
+ "1625": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1625": {
+ "1626": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1626": {
+ "1627": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1627": {
+ "1628": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1628": {
+ "1629": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1629": {
+ "1630": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1630": {
+ "1631": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1631": {
+ "1632": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1632": {
+ "1633": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1633": {
+ "1634": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1634": {
+ "1635": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1635": {
+ "1636": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1636": {
+ "1637": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1637": {
+ "1638": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1638": {
+ "1639": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1639": {
+ "1640": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1640": {
+ "1641": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1641": {
+ "1642": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1642": {
+ "1643": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1643": {
+ "1644": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1644": {
+ "1645": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1645": {
+ "1646": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1646": {
+ "1647": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1647": {
+ "1648": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1649": {
+ "1650": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError"
},
- "1650": {
+ "1651": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError.__constructor"
},
- "1651": {
+ "1652": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError"
},
- "1652": {
+ "1653": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1653": {
+ "1654": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1654": {
+ "1655": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1655": {
+ "1656": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1657": {
+ "1658": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1658": {
+ "1659": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1659": {
+ "1660": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1660": {
+ "1661": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1661": {
+ "1662": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1662": {
+ "1663": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1663": {
+ "1664": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1664": {
+ "1665": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1665": {
+ "1666": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1667": {
+ "1668": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1668": {
+ "1669": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1669": {
+ "1670": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1670": {
+ "1671": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1671": {
+ "1672": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1672": {
+ "1673": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1673": {
+ "1674": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1674": {
+ "1675": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1675": {
+ "1676": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1676": {
+ "1677": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1677": {
+ "1678": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1679": {
+ "1680": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1680": {
+ "1681": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1681": {
+ "1682": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1682": {
+ "1683": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1683": {
+ "1684": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1684": {
+ "1685": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1685": {
+ "1686": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1686": {
+ "1687": {
"sourceFileName": "",
"qualifiedName": "__type"
}
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json
index 9885a8b687e9c..6b1c9b62d7b07 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json
@@ -6,7 +6,7 @@
"flags": {},
"children": [
{
- "id": 1538,
+ "id": 1539,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -32,7 +32,7 @@
},
"children": [
{
- "id": 1539,
+ "id": 1540,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -42,12 +42,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"signatures": [
{
- "id": 1540,
+ "id": 1541,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -57,12 +57,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"parameters": [
{
- "id": 1541,
+ "id": 1542,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -73,7 +73,7 @@
}
},
{
- "id": 1542,
+ "id": 1543,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -84,7 +84,7 @@
}
},
{
- "id": 1543,
+ "id": 1544,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -106,25 +106,25 @@
],
"type": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1530,
+ "target": 1531,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1529,
+ "target": 1530,
"name": "AuthError.constructor"
}
},
{
- "id": 1545,
+ "id": 1546,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -153,7 +153,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -182,7 +182,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1546,
+ "id": 1547,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -195,12 +195,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1534,
+ "target": 1535,
"name": "AuthError.code"
}
},
{
- "id": 1544,
+ "id": 1545,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -218,7 +218,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L51"
}
],
"type": {
@@ -227,7 +227,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1536,
+ "target": 1537,
"name": "AuthError.status"
}
}
@@ -235,11 +235,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1539]
+ "children": [1540]
},
{
"title": "Properties",
- "children": [1545, 1544]
+ "children": [1546, 1545]
}
],
"sources": [
@@ -247,20 +247,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L50"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1528,
+ "id": 1529,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -286,7 +286,7 @@
},
"children": [
{
- "id": 1529,
+ "id": 1530,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -296,12 +296,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"signatures": [
{
- "id": 1530,
+ "id": 1531,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -311,12 +311,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"parameters": [
{
- "id": 1531,
+ "id": 1532,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -327,7 +327,7 @@
}
},
{
- "id": 1532,
+ "id": 1533,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -340,7 +340,7 @@
}
},
{
- "id": 1533,
+ "id": 1534,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -355,7 +355,7 @@
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -373,7 +373,7 @@
}
},
{
- "id": 1534,
+ "id": 1535,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -400,7 +400,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -429,7 +429,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1535,
+ "id": 1536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -442,7 +442,7 @@
}
},
{
- "id": 1536,
+ "id": 1537,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -460,7 +460,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -481,11 +481,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1529]
+ "children": [1530]
},
{
"title": "Properties",
- "children": [1534, 1536]
+ "children": [1535, 1537]
}
],
"sources": [
@@ -493,7 +493,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L14"
}
],
"extendedTypes": [
@@ -510,23 +510,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError"
}
]
},
{
- "id": 1595,
+ "id": 1596,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -552,7 +552,7 @@
},
"children": [
{
- "id": 1596,
+ "id": 1597,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -562,12 +562,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"signatures": [
{
- "id": 1597,
+ "id": 1598,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -577,12 +577,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"parameters": [
{
- "id": 1598,
+ "id": 1599,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -593,7 +593,7 @@
}
},
{
- "id": 1599,
+ "id": 1600,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -608,14 +608,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1600,
+ "id": 1601,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1602,
+ "id": 1603,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -625,7 +625,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -634,7 +634,7 @@
}
},
{
- "id": 1601,
+ "id": 1602,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -644,7 +644,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -656,7 +656,7 @@
"groups": [
{
"title": "Properties",
- "children": [1602, 1601]
+ "children": [1603, 1602]
}
],
"sources": [
@@ -664,7 +664,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L177"
}
]
}
@@ -676,25 +676,25 @@
],
"type": {
"type": "reference",
- "target": 1595,
+ "target": 1596,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1619,
+ "id": 1620,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -723,7 +723,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -752,7 +752,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1620,
+ "id": 1621,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -765,12 +765,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1603,
+ "id": 1604,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -780,7 +780,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -793,14 +793,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1604,
+ "id": 1605,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1606,
+ "id": 1607,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -810,7 +810,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -819,7 +819,7 @@
}
},
{
- "id": 1605,
+ "id": 1606,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -829,7 +829,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -841,7 +841,7 @@
"groups": [
{
"title": "Properties",
- "children": [1606, 1605]
+ "children": [1607, 1606]
}
],
"sources": [
@@ -849,7 +849,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -859,7 +859,7 @@
"defaultValue": "null"
},
{
- "id": 1617,
+ "id": 1618,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -871,7 +871,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -880,12 +880,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1618,
+ "id": 1619,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -905,7 +905,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -914,12 +914,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
},
{
- "id": 1607,
+ "id": 1608,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -929,12 +929,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"signatures": [
{
- "id": 1608,
+ "id": 1609,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -944,20 +944,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1609,
+ "id": 1610,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1613,
+ "id": 1614,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -967,7 +967,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 187,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L187"
}
],
"type": {
@@ -980,14 +980,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1614,
+ "id": 1615,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1616,
+ "id": 1617,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -997,7 +997,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -1006,7 +1006,7 @@
}
},
{
- "id": 1615,
+ "id": 1616,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1016,7 +1016,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -1028,7 +1028,7 @@
"groups": [
{
"title": "Properties",
- "children": [1616, 1615]
+ "children": [1617, 1616]
}
],
"sources": [
@@ -1036,7 +1036,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -1046,7 +1046,7 @@
"defaultValue": "..."
},
{
- "id": 1611,
+ "id": 1612,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -1056,7 +1056,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 185,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L185"
}
],
"type": {
@@ -1066,7 +1066,7 @@
"defaultValue": "..."
},
{
- "id": 1610,
+ "id": 1611,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1076,7 +1076,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 184,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L184"
}
],
"type": {
@@ -1086,7 +1086,7 @@
"defaultValue": "..."
},
{
- "id": 1612,
+ "id": 1613,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1096,7 +1096,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 186,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L186"
}
],
"type": {
@@ -1109,7 +1109,7 @@
"groups": [
{
"title": "Properties",
- "children": [1613, 1611, 1610, 1612]
+ "children": [1614, 1612, 1611, 1613]
}
],
"sources": [
@@ -1117,7 +1117,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 183,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L183"
}
]
}
@@ -1129,15 +1129,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1596]
+ "children": [1597]
},
{
"title": "Properties",
- "children": [1619, 1603, 1617, 1618]
+ "children": [1620, 1604, 1618, 1619]
},
{
"title": "Methods",
- "children": [1607]
+ "children": [1608]
}
],
"sources": [
@@ -1145,20 +1145,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 175,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L175"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1586,
+ "id": 1587,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -1184,7 +1184,7 @@
},
"children": [
{
- "id": 1587,
+ "id": 1588,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1194,12 +1194,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"signatures": [
{
- "id": 1588,
+ "id": 1589,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -1209,12 +1209,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"parameters": [
{
- "id": 1589,
+ "id": 1590,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1227,25 +1227,25 @@
],
"type": {
"type": "reference",
- "target": 1586,
+ "target": 1587,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1592,
+ "id": 1593,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1274,7 +1274,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1303,7 +1303,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1593,
+ "id": 1594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1316,12 +1316,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1590,
+ "id": 1591,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1333,7 +1333,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1342,12 +1342,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1591,
+ "id": 1592,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1367,7 +1367,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1376,7 +1376,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -1384,11 +1384,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1587]
+ "children": [1588]
},
{
"title": "Properties",
- "children": [1592, 1590, 1591]
+ "children": [1593, 1591, 1592]
}
],
"sources": [
@@ -1396,20 +1396,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 156,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L156"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1679,
+ "id": 1680,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -1435,7 +1435,7 @@
},
"children": [
{
- "id": 1680,
+ "id": 1681,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1445,12 +1445,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 321,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L321"
}
],
"signatures": [
{
- "id": 1681,
+ "id": 1682,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -1460,12 +1460,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 321,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L321"
}
],
"parameters": [
{
- "id": 1682,
+ "id": 1683,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1478,25 +1478,25 @@
],
"type": {
"type": "reference",
- "target": 1679,
+ "target": 1680,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1685,
+ "id": 1686,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1525,7 +1525,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1554,7 +1554,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1686,
+ "id": 1687,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1567,12 +1567,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1683,
+ "id": 1684,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1584,7 +1584,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1593,12 +1593,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1684,
+ "id": 1685,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1618,7 +1618,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1627,7 +1627,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -1635,11 +1635,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1680]
+ "children": [1681]
},
{
"title": "Properties",
- "children": [1685, 1683, 1684]
+ "children": [1686, 1684, 1685]
}
],
"sources": [
@@ -1647,20 +1647,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 320,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L320"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L320"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1578,
+ "id": 1579,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -1686,7 +1686,7 @@
},
"children": [
{
- "id": 1579,
+ "id": 1580,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1696,12 +1696,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"signatures": [
{
- "id": 1580,
+ "id": 1581,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -1711,30 +1711,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"type": {
"type": "reference",
- "target": 1578,
+ "target": 1579,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1583,
+ "id": 1584,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1763,7 +1763,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1792,7 +1792,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1584,
+ "id": 1585,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1805,12 +1805,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1581,
+ "id": 1582,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1822,7 +1822,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1831,12 +1831,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1582,
+ "id": 1583,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1856,7 +1856,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1865,7 +1865,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -1873,11 +1873,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1579]
+ "children": [1580]
},
{
"title": "Properties",
- "children": [1583, 1581, 1582]
+ "children": [1584, 1582, 1583]
}
],
"sources": [
@@ -1885,20 +1885,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 140,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L140"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1649,
+ "id": 1650,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "declaration",
"kind": 128,
@@ -1924,7 +1924,7 @@
},
"children": [
{
- "id": 1650,
+ "id": 1651,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1934,12 +1934,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L239"
}
],
"signatures": [
{
- "id": 1651,
+ "id": 1652,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "signature",
"kind": 16384,
@@ -1949,30 +1949,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L239"
}
],
"type": {
"type": "reference",
- "target": 1649,
+ "target": 1650,
"name": "AuthPKCECodeVerifierMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1654,
+ "id": 1655,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2001,7 +2001,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2030,7 +2030,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1655,
+ "id": 1656,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2043,12 +2043,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1652,
+ "id": 1653,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2060,7 +2060,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2069,12 +2069,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1653,
+ "id": 1654,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2094,7 +2094,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2103,7 +2103,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -2111,11 +2111,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1650]
+ "children": [1651]
},
{
"title": "Properties",
- "children": [1654, 1652, 1653]
+ "children": [1655, 1653, 1654]
}
],
"sources": [
@@ -2123,20 +2123,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 238,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L238"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1622,
+ "id": 1623,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -2162,7 +2162,7 @@
},
"children": [
{
- "id": 1623,
+ "id": 1624,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2172,12 +2172,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"signatures": [
{
- "id": 1624,
+ "id": 1625,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -2187,12 +2187,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"parameters": [
{
- "id": 1625,
+ "id": 1626,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2203,7 +2203,7 @@
}
},
{
- "id": 1626,
+ "id": 1627,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -2218,14 +2218,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1627,
+ "id": 1628,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1629,
+ "id": 1630,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2235,7 +2235,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -2244,7 +2244,7 @@
}
},
{
- "id": 1628,
+ "id": 1629,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2254,7 +2254,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -2266,7 +2266,7 @@
"groups": [
{
"title": "Properties",
- "children": [1629, 1628]
+ "children": [1630, 1629]
}
],
"sources": [
@@ -2274,7 +2274,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L211"
}
]
}
@@ -2286,25 +2286,25 @@
],
"type": {
"type": "reference",
- "target": 1622,
+ "target": 1623,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1646,
+ "id": 1647,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2333,7 +2333,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2362,7 +2362,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1647,
+ "id": 1648,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2375,12 +2375,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1630,
+ "id": 1631,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -2390,7 +2390,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2403,14 +2403,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1631,
+ "id": 1632,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1633,
+ "id": 1634,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2420,7 +2420,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2429,7 +2429,7 @@
}
},
{
- "id": 1632,
+ "id": 1633,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2439,7 +2439,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2451,7 +2451,7 @@
"groups": [
{
"title": "Properties",
- "children": [1633, 1632]
+ "children": [1634, 1633]
}
],
"sources": [
@@ -2459,7 +2459,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -2469,7 +2469,7 @@
"defaultValue": "null"
},
{
- "id": 1644,
+ "id": 1645,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2481,7 +2481,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2490,12 +2490,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1645,
+ "id": 1646,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2515,7 +2515,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2524,12 +2524,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
},
{
- "id": 1634,
+ "id": 1635,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -2539,12 +2539,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"signatures": [
{
- "id": 1635,
+ "id": 1636,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -2554,20 +2554,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1636,
+ "id": 1637,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1640,
+ "id": 1641,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -2577,7 +2577,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 221,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L221"
}
],
"type": {
@@ -2590,14 +2590,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1641,
+ "id": 1642,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1643,
+ "id": 1644,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2607,7 +2607,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2616,7 +2616,7 @@
}
},
{
- "id": 1642,
+ "id": 1643,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2626,7 +2626,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2638,7 +2638,7 @@
"groups": [
{
"title": "Properties",
- "children": [1643, 1642]
+ "children": [1644, 1643]
}
],
"sources": [
@@ -2646,7 +2646,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -2656,7 +2656,7 @@
"defaultValue": "..."
},
{
- "id": 1638,
+ "id": 1639,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -2666,7 +2666,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 219,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L219"
}
],
"type": {
@@ -2676,7 +2676,7 @@
"defaultValue": "..."
},
{
- "id": 1637,
+ "id": 1638,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2686,7 +2686,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L218"
}
],
"type": {
@@ -2696,7 +2696,7 @@
"defaultValue": "..."
},
{
- "id": 1639,
+ "id": 1640,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2706,7 +2706,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 220,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L220"
}
],
"type": {
@@ -2719,7 +2719,7 @@
"groups": [
{
"title": "Properties",
- "children": [1640, 1638, 1637, 1639]
+ "children": [1641, 1639, 1638, 1640]
}
],
"sources": [
@@ -2727,7 +2727,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 217,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L217"
}
]
}
@@ -2739,15 +2739,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1623]
+ "children": [1624]
},
{
"title": "Properties",
- "children": [1646, 1630, 1644, 1645]
+ "children": [1647, 1631, 1645, 1646]
},
{
"title": "Methods",
- "children": [1634]
+ "children": [1635]
}
],
"sources": [
@@ -2755,20 +2755,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 208,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L208"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1657,
+ "id": 1658,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -2794,7 +2794,7 @@
},
"children": [
{
- "id": 1658,
+ "id": 1659,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2804,12 +2804,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L269"
}
],
"signatures": [
{
- "id": 1659,
+ "id": 1660,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -2819,12 +2819,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L269"
}
],
"parameters": [
{
- "id": 1660,
+ "id": 1661,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2835,7 +2835,7 @@
}
},
{
- "id": 1661,
+ "id": 1662,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -2848,25 +2848,25 @@
],
"type": {
"type": "reference",
- "target": 1657,
+ "target": 1658,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1664,
+ "id": 1665,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2895,7 +2895,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2924,7 +2924,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1665,
+ "id": 1666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2937,12 +2937,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1662,
+ "id": 1663,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2954,7 +2954,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2963,12 +2963,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1663,
+ "id": 1664,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2988,7 +2988,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2997,7 +2997,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -3005,11 +3005,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1658]
+ "children": [1659]
},
{
"title": "Properties",
- "children": [1664, 1662, 1663]
+ "children": [1665, 1663, 1664]
}
],
"sources": [
@@ -3017,20 +3017,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 268,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L268"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1570,
+ "id": 1571,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -3056,7 +3056,7 @@
},
"children": [
{
- "id": 1571,
+ "id": 1572,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3066,12 +3066,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"signatures": [
{
- "id": 1572,
+ "id": 1573,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -3081,30 +3081,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"type": {
"type": "reference",
- "target": 1570,
+ "target": 1571,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1575,
+ "id": 1576,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3133,7 +3133,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3162,7 +3162,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1576,
+ "id": 1577,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3175,12 +3175,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1573,
+ "id": 1574,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3192,7 +3192,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -3201,12 +3201,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1574,
+ "id": 1575,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3226,7 +3226,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -3235,7 +3235,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -3243,11 +3243,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1571]
+ "children": [1572]
},
{
"title": "Properties",
- "children": [1575, 1573, 1574]
+ "children": [1576, 1574, 1575]
}
],
"sources": [
@@ -3255,20 +3255,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 120,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L120"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1548,
+ "id": 1549,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -3294,7 +3294,7 @@
},
"children": [
{
- "id": 1549,
+ "id": 1550,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3304,12 +3304,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"signatures": [
{
- "id": 1550,
+ "id": 1551,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -3319,12 +3319,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"parameters": [
{
- "id": 1551,
+ "id": 1552,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3335,7 +3335,7 @@
}
},
{
- "id": 1552,
+ "id": 1553,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -3348,25 +3348,25 @@
],
"type": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1530,
+ "target": 1531,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1529,
+ "target": 1530,
"name": "AuthError.constructor"
}
},
{
- "id": 1554,
+ "id": 1555,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3395,7 +3395,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3424,7 +3424,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1555,
+ "id": 1556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3437,12 +3437,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1534,
+ "target": 1535,
"name": "AuthError.code"
}
},
{
- "id": 1553,
+ "id": 1554,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -3452,7 +3452,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L80"
}
],
"type": {
@@ -3461,7 +3461,7 @@
}
},
{
- "id": 1556,
+ "id": 1557,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3481,7 +3481,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -3499,7 +3499,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1536,
+ "target": 1537,
"name": "AuthError.status"
}
}
@@ -3507,11 +3507,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1549]
+ "children": [1550]
},
{
"title": "Properties",
- "children": [1554, 1553, 1556]
+ "children": [1555, 1554, 1557]
}
],
"sources": [
@@ -3519,20 +3519,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 79,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L79"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1667,
+ "id": 1668,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -3558,7 +3558,7 @@
},
"children": [
{
- "id": 1668,
+ "id": 1669,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3568,12 +3568,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L299"
}
],
"signatures": [
{
- "id": 1669,
+ "id": 1670,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -3583,12 +3583,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L299"
}
],
"parameters": [
{
- "id": 1670,
+ "id": 1671,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3599,7 +3599,7 @@
}
},
{
- "id": 1671,
+ "id": 1672,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3610,7 +3610,7 @@
}
},
{
- "id": 1672,
+ "id": 1673,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -3639,25 +3639,25 @@
],
"type": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1560,
+ "target": 1561,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1559,
+ "target": 1560,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1676,
+ "id": 1677,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3686,7 +3686,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3715,7 +3715,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1677,
+ "id": 1678,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3728,12 +3728,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1567,
+ "target": 1568,
"name": "CustomAuthError.code"
}
},
{
- "id": 1674,
+ "id": 1675,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3745,7 +3745,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -3754,12 +3754,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "CustomAuthError.name"
}
},
{
- "id": 1673,
+ "id": 1674,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -3777,7 +3777,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L297"
}
],
"type": {
@@ -3802,7 +3802,7 @@
}
},
{
- "id": 1675,
+ "id": 1676,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3822,7 +3822,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -3831,7 +3831,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1566,
+ "target": 1567,
"name": "CustomAuthError.status"
}
}
@@ -3839,11 +3839,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1668]
+ "children": [1669]
},
{
"title": "Properties",
- "children": [1676, 1674, 1673, 1675]
+ "children": [1677, 1675, 1674, 1676]
}
],
"sources": [
@@ -3851,20 +3851,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 293,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L293"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1558,
+ "id": 1559,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -3890,7 +3890,7 @@
},
"children": [
{
- "id": 1559,
+ "id": 1560,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3900,12 +3900,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"signatures": [
{
- "id": 1560,
+ "id": 1561,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -3915,12 +3915,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"parameters": [
{
- "id": 1561,
+ "id": 1562,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3931,7 +3931,7 @@
}
},
{
- "id": 1562,
+ "id": 1563,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -3942,7 +3942,7 @@
}
},
{
- "id": 1563,
+ "id": 1564,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3953,7 +3953,7 @@
}
},
{
- "id": 1564,
+ "id": 1565,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -3975,25 +3975,25 @@
],
"type": {
"type": "reference",
- "target": 1558,
+ "target": 1559,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1530,
+ "target": 1531,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1529,
+ "target": 1530,
"name": "AuthError.constructor"
}
},
{
- "id": 1567,
+ "id": 1568,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4022,7 +4022,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -4051,7 +4051,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1568,
+ "id": 1569,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4064,12 +4064,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1534,
+ "target": 1535,
"name": "AuthError.code"
}
},
{
- "id": 1565,
+ "id": 1566,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4079,7 +4079,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -4093,7 +4093,7 @@
}
},
{
- "id": 1566,
+ "id": 1567,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4111,7 +4111,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -4120,7 +4120,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1536,
+ "target": 1537,
"name": "AuthError.status"
}
}
@@ -4128,11 +4128,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1559]
+ "children": [1560]
},
{
"title": "Properties",
- "children": [1567, 1565, 1566]
+ "children": [1568, 1566, 1567]
}
],
"sources": [
@@ -4140,13 +4140,13 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 99,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L99"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -4154,47 +4154,47 @@
"extendedBy": [
{
"type": "reference",
- "target": 1570,
+ "target": 1571,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1578,
+ "target": 1579,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1586,
+ "target": 1587,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1595,
+ "target": 1596,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1622,
+ "target": 1623,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1649,
+ "target": 1650,
"name": "AuthPKCECodeVerifierMissingError"
},
{
"type": "reference",
- "target": 1657,
+ "target": 1658,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1679,
+ "target": 1680,
"name": "AuthInvalidJwtError"
}
]
@@ -4217,7 +4217,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"signatures": [
@@ -4251,7 +4251,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"parameters": [
@@ -4283,7 +4283,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 70,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
}
],
"type": {
@@ -4512,7 +4512,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"type": {
@@ -4528,7 +4528,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"indexSignatures": [
@@ -4543,7 +4543,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 68,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
}
],
"parameters": [
@@ -4580,7 +4580,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
}
],
"type": {
@@ -4601,7 +4601,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 65,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
}
]
}
@@ -4637,12 +4637,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
}
],
"type": {
"type": "reference",
- "target": 1306,
+ "target": 1307,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -4666,12 +4666,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
}
],
"type": {
"type": "reference",
- "target": 1432,
+ "target": 1433,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -4687,7 +4687,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"signatures": [
@@ -4718,7 +4718,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"parameters": [
@@ -4730,7 +4730,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 905,
+ "target": 906,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -4745,7 +4745,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4767,7 +4767,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 337,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
}
],
"signatures": [
@@ -4798,7 +4798,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 337,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L337"
}
],
"parameters": [
@@ -4859,7 +4859,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4881,7 +4881,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"signatures": [
@@ -4904,7 +4904,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"parameters": [
@@ -4916,7 +4916,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1115,
+ "target": 1116,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -4931,7 +4931,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1116,
+ "target": 1117,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -4953,7 +4953,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"signatures": [
@@ -4976,7 +4976,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"parameters": [
@@ -5017,7 +5017,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -5039,7 +5039,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"signatures": [
@@ -5062,7 +5062,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"parameters": [
@@ -5137,7 +5137,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 129,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
}
],
"type": {
@@ -5166,7 +5166,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 132,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
}
],
"type": {
@@ -5186,7 +5186,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 127,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
}
]
}
@@ -5203,7 +5203,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -5225,7 +5225,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"signatures": [
@@ -5256,7 +5256,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"parameters": [
@@ -5294,7 +5294,7 @@
},
"type": {
"type": "reference",
- "target": 1327,
+ "target": 1328,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -5330,7 +5330,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5356,7 +5356,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5375,14 +5375,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -5400,14 +5400,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
},
{
"type": "reference",
- "target": 1320,
+ "target": 1321,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -5425,7 +5425,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5445,7 +5445,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
@@ -5470,7 +5470,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -5493,7 +5493,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -5512,7 +5512,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -5529,12 +5529,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -5551,7 +5551,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -5576,7 +5576,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"signatures": [
@@ -5599,7 +5599,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"parameters": [
@@ -5683,7 +5683,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -5702,7 +5702,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -5714,7 +5714,7 @@
},
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -5733,7 +5733,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
]
}
@@ -5756,7 +5756,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 310,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
}
],
"signatures": [
@@ -5864,7 +5864,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 310,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L310"
}
],
"parameters": [
@@ -5911,7 +5911,7 @@
},
"type": {
"type": "reference",
- "target": 905,
+ "target": 906,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -5926,7 +5926,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -5957,7 +5957,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 32,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
}
]
},
@@ -5977,9 +5977,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 298,
+ "line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L299"
}
],
"signatures": [
@@ -6011,9 +6011,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 298,
+ "line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L299"
}
],
"parameters": [
@@ -6058,9 +6058,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 203,
+ "line": 204,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L204"
}
],
"type": {
@@ -6088,14 +6088,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 207,
+ "line": 208,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L207"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L208"
}
],
"type": {
"type": "reference",
- "target": 1175,
+ "target": 1176,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -6117,14 +6117,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 213,
+ "line": 214,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L214"
}
],
"type": {
"type": "reference",
- "target": 1484,
+ "target": 1485,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -6138,9 +6138,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 757,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L757"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"signatures": [
@@ -6161,9 +6161,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 757,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L757"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"parameters": [
@@ -6188,7 +6188,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 799,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -6208,9 +6208,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3801,
+ "line": 3807,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3801"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3807"
}
],
"signatures": [
@@ -6257,9 +6257,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3801,
+ "line": 3807,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3801"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3807"
}
],
"parameters": [
@@ -6351,9 +6351,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3810,
+ "line": 3816,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3810"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3816"
}
],
"type": {
@@ -6380,9 +6380,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3813,
+ "line": 3819,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3813"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3819"
}
],
"type": {
@@ -6403,16 +6403,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3813,
+ "line": 3819,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3813"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3819"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1375,
+ "target": 1376,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -6428,9 +6428,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3813,
+ "line": 3819,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3813"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3819"
}
]
}
@@ -6461,16 +6461,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3807,
+ "line": 3813,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3807"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3813"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1375,
+ "target": 1376,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -6486,9 +6486,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3803,
+ "line": 3809,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3803"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3809"
}
]
}
@@ -6524,9 +6524,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
@@ -6547,14 +6547,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
"type": "reference",
- "target": 1355,
+ "target": 1356,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
@@ -6568,14 +6568,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
"type": "reference",
- "target": 1340,
+ "target": 1341,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
@@ -6589,9 +6589,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
],
"type": {
@@ -6614,9 +6614,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3817,
+ "line": 3823,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3823"
}
]
}
@@ -6631,9 +6631,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3818,
+ "line": 3824,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3818"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3824"
}
],
"type": {
@@ -6651,9 +6651,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3816,
+ "line": 3822,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3816"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3822"
}
]
}
@@ -6676,9 +6676,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3820,
+ "line": 3826,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3826"
}
],
"type": {
@@ -6695,14 +6695,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3820,
+ "line": 3826,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3826"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -6717,9 +6717,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3820,
+ "line": 3826,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3826"
}
]
}
@@ -6742,9 +6742,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3821,
+ "line": 3827,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3827"
}
],
"type": {
@@ -6761,9 +6761,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3821,
+ "line": 3827,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3827"
}
],
"type": {
@@ -6781,9 +6781,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3821,
+ "line": 3827,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L3821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L3827"
}
]
}
@@ -6806,9 +6806,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1478,
+ "line": 1484,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1484"
}
],
"signatures": [
@@ -6838,9 +6838,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1478,
+ "line": 1484,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1484"
}
],
"type": {
@@ -6871,9 +6871,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1571,
+ "line": 1577,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1577"
}
],
"type": {
@@ -6894,14 +6894,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1572,
+ "line": 1578,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1572"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1578"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -6916,9 +6916,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1571,
+ "line": 1577,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1577"
}
]
}
@@ -6933,9 +6933,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1574,
+ "line": 1580,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1574"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1580"
}
],
"type": {
@@ -6953,9 +6953,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1570,
+ "line": 1576,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1570"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1576"
}
]
}
@@ -6978,9 +6978,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1577,
+ "line": 1583,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1577"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1583"
}
],
"type": {
@@ -7001,9 +7001,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1578,
+ "line": 1584,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1578"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1584"
}
],
"type": {
@@ -7021,9 +7021,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1577,
+ "line": 1583,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1577"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1583"
}
]
}
@@ -7038,14 +7038,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1580,
+ "line": 1586,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1580"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1586"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7060,9 +7060,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1576,
+ "line": 1582,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1576"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1582"
}
]
}
@@ -7085,9 +7085,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1583,
+ "line": 1589,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1589"
}
],
"type": {
@@ -7108,9 +7108,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1584,
+ "line": 1590,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1590"
}
],
"type": {
@@ -7128,9 +7128,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1583,
+ "line": 1589,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1589"
}
]
}
@@ -7145,9 +7145,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1586,
+ "line": 1592,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1592"
}
],
"type": {
@@ -7165,9 +7165,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1582,
+ "line": 1588,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1582"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1588"
}
]
}
@@ -7190,9 +7190,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1720,
+ "line": 1726,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1720"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1726"
}
],
"signatures": [
@@ -7213,9 +7213,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1720,
+ "line": 1726,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1720"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1726"
}
],
"parameters": [
@@ -7250,7 +7250,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -7270,9 +7270,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2316,
+ "line": 2322,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2316"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2322"
}
],
"signatures": [
@@ -7293,9 +7293,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2316,
+ "line": 2322,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2316"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2322"
}
],
"type": {
@@ -7326,9 +7326,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2318,
+ "line": 2324,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2324"
}
],
"type": {
@@ -7349,16 +7349,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2319,
+ "line": 2325,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2319"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2325"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -7374,9 +7374,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2318,
+ "line": 2324,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2324"
}
]
}
@@ -7391,9 +7391,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2321,
+ "line": 2327,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2327"
}
],
"type": {
@@ -7411,9 +7411,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2317,
+ "line": 2323,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2317"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2323"
}
]
}
@@ -7436,9 +7436,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2323,
+ "line": 2329,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2323"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2329"
}
],
"type": {
@@ -7455,14 +7455,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2323,
+ "line": 2329,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2323"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2329"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7477,9 +7477,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2323,
+ "line": 2329,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2323"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2329"
}
]
}
@@ -7502,9 +7502,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 453,
+ "line": 459,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L459"
}
],
"signatures": [
@@ -7525,9 +7525,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 453,
+ "line": 459,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L459"
}
],
"type": {
@@ -7539,7 +7539,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1316,
+ "target": 1317,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -7561,9 +7561,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 417,
+ "line": 423,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L417"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L423"
}
],
"signatures": [
@@ -7584,9 +7584,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 417,
+ "line": 423,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L417"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L423"
}
],
"type": {
@@ -7605,21 +7605,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2341,
+ "line": 2347,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2347"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2346,
+ "line": 2352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2352"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2348,
+ "line": 2354,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2348"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2354"
}
],
"signatures": [
@@ -7640,9 +7640,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2341,
+ "line": 2347,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2347"
}
],
"parameters": [
@@ -7654,7 +7654,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 965,
+ "target": 966,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -7669,7 +7669,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 807,
+ "target": 808,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -7695,9 +7695,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2346,
+ "line": 2352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2352"
}
],
"parameters": [
@@ -7709,7 +7709,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 977,
+ "target": 978,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -7724,7 +7724,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 799,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -7744,21 +7744,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2213,
+ "line": 2219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2219"
}
],
"signatures": [
@@ -7779,9 +7779,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
],
"parameters": [
@@ -7810,9 +7810,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
],
"signatures": [
@@ -7825,9 +7825,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
],
"parameters": [
@@ -7859,7 +7859,7 @@
},
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -7895,9 +7895,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2194,
+ "line": 2200,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2200"
}
],
"type": {
@@ -7918,14 +7918,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2194,
+ "line": 2200,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2200"
}
],
"type": {
"type": "reference",
- "target": 918,
+ "target": 919,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -7940,9 +7940,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2194,
+ "line": 2200,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2200"
}
]
}
@@ -7958,9 +7958,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2193,
+ "line": 2199,
"character": 90,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2199"
}
]
}
@@ -8002,9 +8002,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
],
"parameters": [
@@ -8033,9 +8033,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
],
"signatures": [
@@ -8048,9 +8048,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
],
"parameters": [
@@ -8082,7 +8082,7 @@
},
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -8129,9 +8129,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2210,
+ "line": 2216,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2216"
}
],
"type": {
@@ -8152,14 +8152,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2210,
+ "line": 2216,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2216"
}
],
"type": {
"type": "reference",
- "target": 918,
+ "target": 919,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -8174,9 +8174,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2210,
+ "line": 2216,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2216"
}
]
}
@@ -8192,9 +8192,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2215,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2215"
}
]
}
@@ -8211,9 +8211,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1391,
+ "line": 1397,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1397"
}
],
"signatures": [
@@ -8234,9 +8234,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1391,
+ "line": 1397,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1397"
}
],
"type": {
@@ -8248,7 +8248,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8268,9 +8268,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
],
"signatures": [
@@ -8291,9 +8291,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
],
"parameters": [
@@ -8331,9 +8331,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
],
"type": {
@@ -8351,9 +8351,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1932,
+ "line": 1938,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1938"
}
]
}
@@ -8369,7 +8369,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8389,9 +8389,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1426,
+ "line": 1432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1432"
}
],
"signatures": [
@@ -8412,9 +8412,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1426,
+ "line": 1432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1432"
}
],
"parameters": [
@@ -8426,7 +8426,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1061,
+ "target": 1062,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -8441,7 +8441,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 793,
+ "target": 794,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -8461,9 +8461,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2269,
+ "line": 2275,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2275"
}
],
"signatures": [
@@ -8484,9 +8484,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2269,
+ "line": 2275,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2275"
}
],
"parameters": [
@@ -8543,9 +8543,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2273,
+ "line": 2279,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2273"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2279"
}
],
"type": {
@@ -8572,9 +8572,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2272,
+ "line": 2278,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2272"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2278"
}
],
"type": {
@@ -8592,9 +8592,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2271,
+ "line": 2277,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2277"
}
]
}
@@ -8630,9 +8630,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2277,
+ "line": 2283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2283"
}
],
"type": {
@@ -8655,9 +8655,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2278,
+ "line": 2284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2278"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2284"
}
],
"type": {
@@ -8675,9 +8675,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2276,
+ "line": 2282,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2282"
}
]
}
@@ -8700,9 +8700,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2286,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2286"
}
],
"type": {
@@ -8719,14 +8719,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2286,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2286"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -8741,9 +8741,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2286,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2286"
}
]
}
@@ -8766,9 +8766,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1857,
+ "line": 1863,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1857"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1863"
}
],
"signatures": [
@@ -8789,9 +8789,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1857,
+ "line": 1863,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1857"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1863"
}
],
"parameters": [
@@ -8827,9 +8827,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1858,
+ "line": 1864,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1858"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1864"
}
],
"type": {
@@ -8846,9 +8846,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1859,
+ "line": 1865,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1859"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1865"
}
],
"type": {
@@ -8866,9 +8866,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1857,
+ "line": 1863,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1857"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1863"
}
]
}
@@ -8884,7 +8884,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8904,9 +8904,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 559,
+ "line": 565,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L565"
}
],
"signatures": [
@@ -8938,9 +8938,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 559,
+ "line": 565,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L565"
}
],
"parameters": [
@@ -8954,7 +8954,7 @@
},
"type": {
"type": "reference",
- "target": 928,
+ "target": 929,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -8969,7 +8969,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8989,9 +8989,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1174,
+ "line": 1180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1174"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1180"
}
],
"signatures": [
@@ -9012,9 +9012,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1174,
+ "line": 1180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1174"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1180"
}
],
"parameters": [
@@ -9026,7 +9026,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 977,
+ "target": 978,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -9041,7 +9041,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 799,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -9061,9 +9061,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 745,
+ "line": 751,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L745"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L751"
}
],
"signatures": [
@@ -9084,9 +9084,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 745,
+ "line": 751,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L745"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L751"
}
],
"parameters": [
@@ -9098,7 +9098,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 965,
+ "target": 966,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -9113,7 +9113,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 807,
+ "target": 808,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -9133,9 +9133,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1227,
+ "line": 1233,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1233"
}
],
"signatures": [
@@ -9172,9 +9172,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1227,
+ "line": 1233,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1233"
}
],
"parameters": [
@@ -9186,7 +9186,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 947,
+ "target": 948,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -9201,7 +9201,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 793,
+ "target": 794,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -9221,9 +9221,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 681,
+ "line": 687,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L681"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L687"
}
],
"signatures": [
@@ -9244,9 +9244,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 681,
+ "line": 687,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L681"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L687"
}
],
"parameters": [
@@ -9258,7 +9258,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 942,
+ "target": 943,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -9273,7 +9273,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 802,
+ "target": 803,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -9293,9 +9293,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1345,
+ "line": 1351,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1345"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1351"
}
],
"signatures": [
@@ -9316,9 +9316,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1345,
+ "line": 1351,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1345"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1351"
}
],
"parameters": [
@@ -9330,7 +9330,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1075,
+ "target": 1076,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -9345,7 +9345,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 820,
+ "target": 821,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -9365,9 +9365,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 772,
+ "line": 778,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L778"
}
],
"signatures": [
@@ -9399,9 +9399,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 772,
+ "line": 778,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L778"
}
],
"parameters": [
@@ -9413,7 +9413,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1038,
+ "target": 1039,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -9447,9 +9447,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
],
"type": {
@@ -9470,14 +9470,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -9491,14 +9491,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -9513,9 +9513,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 774,
+ "line": 780,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L780"
}
]
}
@@ -9530,9 +9530,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 775,
+ "line": 781,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L775"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L781"
}
],
"type": {
@@ -9550,9 +9550,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 773,
+ "line": 779,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L773"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L779"
}
]
}
@@ -9575,9 +9575,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
@@ -9598,9 +9598,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
@@ -9617,9 +9617,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
@@ -9637,9 +9637,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
]
}
@@ -9654,14 +9654,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9676,9 +9676,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 777,
+ "line": 783,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L783"
}
]
}
@@ -9701,9 +9701,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
],
"signatures": [
@@ -9764,9 +9764,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
],
"parameters": [
@@ -9778,7 +9778,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1331,
+ "target": 1332,
"name": "SignOut",
"package": "@supabase/auth-js"
},
@@ -9810,9 +9810,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
],
"type": {
@@ -9824,7 +9824,7 @@
},
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9841,9 +9841,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2146,
+ "line": 2152,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2152"
}
]
}
@@ -9864,9 +9864,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 602,
+ "line": 608,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L608"
}
],
"signatures": [
@@ -9907,9 +9907,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 602,
+ "line": 608,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L608"
}
],
"parameters": [
@@ -9921,7 +9921,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 934,
+ "target": 935,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -9936,7 +9936,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9956,9 +9956,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2945,
+ "line": 2951,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2945"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2951"
}
],
"signatures": [
@@ -9994,9 +9994,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2945,
+ "line": 2951,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2945"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2951"
}
],
"type": {
@@ -10026,9 +10026,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2958,
+ "line": 2964,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2964"
}
],
"signatures": [
@@ -10058,9 +10058,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2958,
+ "line": 2964,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2964"
}
],
"type": {
@@ -10090,9 +10090,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2446,
+ "line": 2452,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2452"
}
],
"signatures": [
@@ -10113,9 +10113,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2446,
+ "line": 2452,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2452"
}
],
"parameters": [
@@ -10127,7 +10127,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -10161,9 +10161,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2448,
+ "line": 2454,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2448"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2454"
}
],
"type": {
@@ -10186,9 +10186,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2449,
+ "line": 2455,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2455"
}
],
"type": {
@@ -10206,9 +10206,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2447,
+ "line": 2453,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2453"
}
]
}
@@ -10231,9 +10231,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2451,
+ "line": 2457,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2457"
}
],
"type": {
@@ -10250,14 +10250,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2451,
+ "line": 2457,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2457"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -10272,9 +10272,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2451,
+ "line": 2457,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L2451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L2457"
}
]
}
@@ -10297,9 +10297,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1785,
+ "line": 1791,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1791"
}
],
"signatures": [
@@ -10320,9 +10320,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1785,
+ "line": 1791,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1791"
}
],
"parameters": [
@@ -10334,7 +10334,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 899,
+ "target": 900,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -10365,9 +10365,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1788,
+ "line": 1794,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1788"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1794"
}
],
"type": {
@@ -10385,9 +10385,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1787,
+ "line": 1793,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1787"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1793"
}
]
}
@@ -10404,7 +10404,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 824,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -10424,9 +10424,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1284,
+ "line": 1290,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1284"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1290"
}
],
"signatures": [
@@ -10447,9 +10447,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1284,
+ "line": 1290,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L1284"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L1290"
}
],
"parameters": [
@@ -10461,7 +10461,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1039,
+ "target": 1040,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -10476,7 +10476,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 784,
+ "target": 785,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -10508,9 +10508,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 194,
+ "line": 195,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/GoTrueClient.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/GoTrueClient.ts#L195"
}
]
},
@@ -10551,7 +10551,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"signatures": [
@@ -10566,7 +10566,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"parameters": [
@@ -10616,7 +10616,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 35,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L35"
}
],
"type": {
@@ -10646,7 +10646,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L52"
}
],
"extendedTypes": [
@@ -10662,14 +10662,14 @@
]
},
{
- "id": 905,
+ "id": 906,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 907,
+ "id": 908,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -10703,9 +10703,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 515,
+ "line": 524,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L515"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L524"
}
],
"type": {
@@ -10714,7 +10714,7 @@
}
},
{
- "id": 910,
+ "id": 911,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -10732,9 +10732,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 541,
+ "line": 550,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L541"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L550"
}
],
"type": {
@@ -10743,7 +10743,7 @@
}
},
{
- "id": 916,
+ "id": 917,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -10762,9 +10762,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 466,
+ "line": 475,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L466"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L475"
}
],
"type": {
@@ -10778,7 +10778,7 @@
}
},
{
- "id": 908,
+ "id": 909,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -10796,9 +10796,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 522,
+ "line": 531,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L531"
}
],
"type": {
@@ -10807,7 +10807,7 @@
}
},
{
- "id": 913,
+ "id": 914,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -10841,9 +10841,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 566,
+ "line": 575,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L566"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L575"
}
],
"type": {
@@ -10852,7 +10852,7 @@
}
},
{
- "id": 914,
+ "id": 915,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -10871,9 +10871,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 483,
+ "line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L492"
}
],
"type": {
@@ -10887,7 +10887,7 @@
}
},
{
- "id": 917,
+ "id": 918,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -10906,9 +10906,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 476,
+ "line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -10922,7 +10922,7 @@
}
},
{
- "id": 912,
+ "id": 913,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -10948,9 +10948,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 559,
+ "line": 568,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L568"
}
],
"type": {
@@ -10959,7 +10959,7 @@
}
},
{
- "id": 915,
+ "id": 916,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -10978,9 +10978,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 471,
+ "line": 480,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L480"
}
],
"type": {
@@ -10994,7 +10994,7 @@
}
},
{
- "id": 909,
+ "id": 910,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -11012,9 +11012,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 529,
+ "line": 538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L529"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L538"
}
],
"type": {
@@ -11023,7 +11023,7 @@
}
},
{
- "id": 911,
+ "id": 912,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -11073,9 +11073,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 550,
+ "line": 559,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L550"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L559"
}
],
"type": {
@@ -11084,7 +11084,7 @@
}
},
{
- "id": 906,
+ "id": 907,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -11118,9 +11118,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 505,
+ "line": 514,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"type": {
@@ -11132,15 +11132,15 @@
"groups": [
{
"title": "Properties",
- "children": [907, 910, 916, 908, 913, 914, 917, 912, 915, 909, 911, 906]
+ "children": [908, 911, 917, 909, 914, 915, 918, 913, 916, 910, 912, 907]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 494,
+ "line": 503,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L503"
}
],
"extendedTypes": [
@@ -11153,7 +11153,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 899,
+ "target": 900,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -11168,7 +11168,7 @@
]
},
{
- "id": 837,
+ "id": 838,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -11188,7 +11188,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1289
+ "target": 1290
},
{
"kind": "text",
@@ -11200,7 +11200,7 @@
},
"children": [
{
- "id": 838,
+ "id": 839,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -11216,20 +11216,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 349,
+ "line": 358,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L349"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L358"
}
],
"type": {
"type": "reference",
- "target": 835,
+ "target": 836,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 839,
+ "id": 840,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -11245,9 +11245,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 355,
+ "line": 364,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L355"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L364"
}
],
"type": {
@@ -11259,20 +11259,20 @@
"groups": [
{
"title": "Properties",
- "children": [838, 839]
+ "children": [839, 840]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 347,
+ "line": 356,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L347"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L356"
}
]
},
{
- "id": 1484,
+ "id": 1485,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -11287,7 +11287,7 @@
},
"children": [
{
- "id": 1488,
+ "id": 1489,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -11295,14 +11295,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1912,
+ "line": 1921,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1912"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1921"
}
],
"signatures": [
{
- "id": 1489,
+ "id": 1490,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -11329,14 +11329,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1912,
+ "line": 1921,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1912"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1921"
}
],
"parameters": [
{
- "id": 1490,
+ "id": 1491,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11355,7 +11355,7 @@
}
},
{
- "id": 1491,
+ "id": 1492,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -11373,14 +11373,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1492,
+ "id": 1493,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1493,
+ "id": 1494,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -11398,9 +11398,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1914,
+ "line": 1923,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1914"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1923"
}
],
"type": {
@@ -11412,15 +11412,15 @@
"groups": [
{
"title": "Properties",
- "children": [1493]
+ "children": [1494]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1914,
+ "line": 1923,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1914"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1923"
}
]
}
@@ -11436,7 +11436,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1475,
+ "target": 1476,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -11448,7 +11448,7 @@
]
},
{
- "id": 1494,
+ "id": 1495,
"name": "denyAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -11456,14 +11456,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1929,
+ "line": 1938,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1929"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1938"
}
],
"signatures": [
{
- "id": 1495,
+ "id": 1496,
"name": "denyAuthorization",
"variant": "signature",
"kind": 4096,
@@ -11490,14 +11490,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1929,
+ "line": 1938,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1929"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1938"
}
],
"parameters": [
{
- "id": 1496,
+ "id": 1497,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11516,7 +11516,7 @@
}
},
{
- "id": 1497,
+ "id": 1498,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -11534,14 +11534,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1498,
+ "id": 1499,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1499,
+ "id": 1500,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -11559,9 +11559,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1931,
+ "line": 1940,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1940"
}
],
"type": {
@@ -11573,15 +11573,15 @@
"groups": [
{
"title": "Properties",
- "children": [1499]
+ "children": [1500]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1931,
+ "line": 1940,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1940"
}
]
}
@@ -11597,7 +11597,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1475,
+ "target": 1476,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -11609,7 +11609,7 @@
]
},
{
- "id": 1485,
+ "id": 1486,
"name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
@@ -11617,14 +11617,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1898,
+ "line": 1907,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1898"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1907"
}
],
"signatures": [
{
- "id": 1486,
+ "id": 1487,
"name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
@@ -11671,14 +11671,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1898,
+ "line": 1907,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1898"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1907"
}
],
"parameters": [
{
- "id": 1487,
+ "id": 1488,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11706,7 +11706,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1474,
+ "target": 1475,
"name": "AuthOAuthAuthorizationDetailsResponse",
"package": "@supabase/auth-js"
}
@@ -11718,7 +11718,7 @@
]
},
{
- "id": 1500,
+ "id": 1501,
"name": "listGrants",
"variant": "declaration",
"kind": 2048,
@@ -11726,14 +11726,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1940,
+ "line": 1949,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1940"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1949"
}
],
"signatures": [
{
- "id": 1501,
+ "id": 1502,
"name": "listGrants",
"variant": "signature",
"kind": 4096,
@@ -11760,9 +11760,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1940,
+ "line": 1949,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1940"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1949"
}
],
"type": {
@@ -11774,7 +11774,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1481,
+ "target": 1482,
"name": "AuthOAuthGrantsResponse",
"package": "@supabase/auth-js"
}
@@ -11786,7 +11786,7 @@
]
},
{
- "id": 1502,
+ "id": 1503,
"name": "revokeGrant",
"variant": "declaration",
"kind": 2048,
@@ -11794,14 +11794,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
],
"signatures": [
{
- "id": 1503,
+ "id": 1504,
"name": "revokeGrant",
"variant": "signature",
"kind": 4096,
@@ -11828,14 +11828,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
],
"parameters": [
{
- "id": 1504,
+ "id": 1505,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -11851,14 +11851,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1505,
+ "id": 1506,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1506,
+ "id": 1507,
"name": "clientId",
"variant": "declaration",
"kind": 1024,
@@ -11874,9 +11874,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
],
"type": {
@@ -11888,15 +11888,15 @@
"groups": [
{
"title": "Properties",
- "children": [1506]
+ "children": [1507]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1953,
+ "line": 1962,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1962"
}
]
}
@@ -11912,7 +11912,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1482,
+ "target": 1483,
"name": "AuthOAuthRevokeGrantResponse",
"package": "@supabase/auth-js"
}
@@ -11927,27 +11927,27 @@
"groups": [
{
"title": "Methods",
- "children": [1488, 1494, 1485, 1500, 1502]
+ "children": [1489, 1495, 1486, 1501, 1503]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1876,
+ "line": 1885,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1876"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1885"
}
]
},
{
- "id": 1112,
+ "id": 1113,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1113,
+ "id": 1114,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -11981,9 +11981,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 920,
+ "line": 929,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L920"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L929"
}
],
"type": {
@@ -11992,7 +11992,7 @@
}
},
{
- "id": 1114,
+ "id": 1115,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -12010,9 +12010,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 922,
+ "line": 931,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L922"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L931"
}
],
"type": {
@@ -12024,20 +12024,20 @@
"groups": [
{
"title": "Properties",
- "children": [1113, 1114]
+ "children": [1114, 1115]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 914,
+ "line": 923,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L914"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L923"
}
]
},
{
- "id": 1306,
+ "id": 1307,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -12058,7 +12058,7 @@
},
"children": [
{
- "id": 1310,
+ "id": 1311,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -12066,14 +12066,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1371,
+ "line": 1380,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1371"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1380"
}
],
"signatures": [
{
- "id": 1311,
+ "id": 1312,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -12093,7 +12093,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1278
+ "target": 1279
}
]
},
@@ -12106,21 +12106,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1371,
+ "line": 1380,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1371"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1380"
}
],
"parameters": [
{
- "id": 1312,
+ "id": 1313,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1296,
+ "target": 1297,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -12135,7 +12135,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1293,
+ "target": 1294,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -12147,7 +12147,7 @@
]
},
{
- "id": 1307,
+ "id": 1308,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -12155,14 +12155,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1361,
+ "line": 1370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1370"
}
],
"signatures": [
{
- "id": 1308,
+ "id": 1309,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -12178,21 +12178,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1361,
+ "line": 1370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1370"
}
],
"parameters": [
{
- "id": 1309,
+ "id": 1310,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1303,
+ "target": 1304,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -12207,7 +12207,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1300,
+ "target": 1301,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -12222,20 +12222,20 @@
"groups": [
{
"title": "Methods",
- "children": [1310, 1307]
+ "children": [1311, 1308]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1356,
+ "line": 1365,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1356"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1365"
}
]
},
{
- "id": 1432,
+ "id": 1433,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -12250,7 +12250,7 @@
},
"children": [
{
- "id": 1436,
+ "id": 1437,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -12258,14 +12258,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1716,
+ "line": 1725,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1716"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1725"
}
],
"signatures": [
{
- "id": 1437,
+ "id": 1438,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -12289,21 +12289,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1716,
+ "line": 1725,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1716"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1725"
}
],
"parameters": [
{
- "id": 1438,
+ "id": 1439,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1404,
+ "target": 1405,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -12318,7 +12318,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12330,7 +12330,7 @@
]
},
{
- "id": 1446,
+ "id": 1447,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -12338,14 +12338,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"signatures": [
{
- "id": 1447,
+ "id": 1448,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -12369,14 +12369,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"parameters": [
{
- "id": 1448,
+ "id": 1449,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12397,14 +12397,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1449,
+ "id": 1450,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1450,
+ "id": 1451,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12412,9 +12412,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"type": {
@@ -12423,7 +12423,7 @@
}
},
{
- "id": 1451,
+ "id": 1452,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12431,9 +12431,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
],
"type": {
@@ -12445,7 +12445,7 @@
},
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12456,15 +12456,15 @@
"groups": [
{
"title": "Properties",
- "children": [1450, 1451]
+ "children": [1451, 1452]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1740,
+ "line": 1749,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1740"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1749"
}
]
}
@@ -12477,7 +12477,7 @@
]
},
{
- "id": 1439,
+ "id": 1440,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -12485,14 +12485,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1724,
+ "line": 1733,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1724"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1733"
}
],
"signatures": [
{
- "id": 1440,
+ "id": 1441,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -12516,14 +12516,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1724,
+ "line": 1733,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1724"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1733"
}
],
"parameters": [
{
- "id": 1441,
+ "id": 1442,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12543,7 +12543,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12555,7 +12555,7 @@
]
},
{
- "id": 1433,
+ "id": 1434,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -12563,14 +12563,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1708,
+ "line": 1717,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1717"
}
],
"signatures": [
{
- "id": 1434,
+ "id": 1435,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -12594,14 +12594,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1708,
+ "line": 1717,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1717"
}
],
"parameters": [
{
- "id": 1435,
+ "id": 1436,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -12610,7 +12610,7 @@
},
"type": {
"type": "reference",
- "target": 1327,
+ "target": 1328,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -12625,7 +12625,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1420,
+ "target": 1421,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -12637,7 +12637,7 @@
]
},
{
- "id": 1452,
+ "id": 1453,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -12645,14 +12645,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1748,
+ "line": 1757,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1748"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1757"
}
],
"signatures": [
{
- "id": 1453,
+ "id": 1454,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -12676,14 +12676,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1748,
+ "line": 1757,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1748"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1757"
}
],
"parameters": [
{
- "id": 1454,
+ "id": 1455,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12703,7 +12703,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12715,7 +12715,7 @@
]
},
{
- "id": 1442,
+ "id": 1443,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -12723,14 +12723,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1732,
+ "line": 1741,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1732"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1741"
}
],
"signatures": [
{
- "id": 1443,
+ "id": 1444,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -12754,14 +12754,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1732,
+ "line": 1741,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1732"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1741"
}
],
"parameters": [
{
- "id": 1444,
+ "id": 1445,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12772,14 +12772,14 @@
}
},
{
- "id": 1445,
+ "id": 1446,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1412,
+ "target": 1413,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -12794,7 +12794,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1419,
+ "target": 1420,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12809,20 +12809,20 @@
"groups": [
{
"title": "Methods",
- "children": [1436, 1446, 1439, 1433, 1452, 1442]
+ "children": [1437, 1447, 1440, 1434, 1453, 1443]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1701,
+ "line": 1710,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1701"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1710"
}
]
},
{
- "id": 1175,
+ "id": 1176,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -12837,7 +12837,7 @@
},
"children": [
{
- "id": 1292,
+ "id": 1293,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -12845,9 +12845,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1314,
+ "line": 1323,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1314"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1323"
}
],
"type": {
@@ -12861,7 +12861,7 @@
}
},
{
- "id": 1196,
+ "id": 1197,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -12869,32 +12869,32 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1258,
+ "line": 1267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1267"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1259,
+ "line": 1268,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1259"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1268"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1260,
+ "line": 1269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1260"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1269"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1261,
+ "line": 1270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1270"
}
],
"signatures": [
{
- "id": 1197,
+ "id": 1198,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -12910,14 +12910,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1258,
+ "line": 1267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1267"
}
],
"parameters": [
{
- "id": 1198,
+ "id": 1199,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -12925,14 +12925,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1199,
+ "id": 1200,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1200,
+ "id": 1201,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -12948,9 +12948,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1028,
+ "line": 1037,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1028"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1037"
}
],
"type": {
@@ -12962,15 +12962,15 @@
"groups": [
{
"title": "Properties",
- "children": [1200]
+ "children": [1201]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -12990,14 +12990,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1201,
+ "id": 1202,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1202,
+ "id": 1203,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13005,9 +13005,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -13016,7 +13016,7 @@
}
},
{
- "id": 1203,
+ "id": 1204,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13024,14 +13024,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13040,15 +13040,15 @@
"groups": [
{
"title": "Properties",
- "children": [1202, 1203]
+ "children": [1203, 1204]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13056,14 +13056,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1204,
+ "id": 1205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1205,
+ "id": 1206,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13071,22 +13071,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1206,
+ "id": 1207,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1209,
+ "id": 1210,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -13102,9 +13102,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1124,
+ "line": 1133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1133"
}
],
"type": {
@@ -13113,7 +13113,7 @@
}
},
{
- "id": 1207,
+ "id": 1208,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -13129,9 +13129,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1118,
+ "line": 1127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1127"
}
],
"type": {
@@ -13140,7 +13140,7 @@
}
},
{
- "id": 1208,
+ "id": 1209,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13156,9 +13156,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1121,
+ "line": 1130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1130"
}
],
"type": {
@@ -13170,22 +13170,22 @@
"groups": [
{
"title": "Properties",
- "children": [1209, 1207, 1208]
+ "children": [1210, 1208, 1209]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
}
},
{
- "id": 1210,
+ "id": 1211,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13193,9 +13193,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -13207,15 +13207,15 @@
"groups": [
{
"title": "Properties",
- "children": [1205, 1210]
+ "children": [1206, 1211]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13228,7 +13228,7 @@
}
},
{
- "id": 1211,
+ "id": 1212,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -13236,14 +13236,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1259,
+ "line": 1268,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1259"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1268"
}
],
"parameters": [
{
- "id": 1212,
+ "id": 1213,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -13251,14 +13251,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1213,
+ "id": 1214,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1215,
+ "id": 1216,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -13274,9 +13274,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1038,
+ "line": 1047,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1038"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1047"
}
],
"type": {
@@ -13294,7 +13294,7 @@
}
},
{
- "id": 1214,
+ "id": 1215,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -13310,9 +13310,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1028,
+ "line": 1037,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1028"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1037"
}
],
"type": {
@@ -13324,15 +13324,15 @@
"groups": [
{
"title": "Properties",
- "children": [1215, 1214]
+ "children": [1216, 1215]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13352,14 +13352,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1216,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1217,
+ "id": 1218,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13367,9 +13367,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -13378,7 +13378,7 @@
}
},
{
- "id": 1218,
+ "id": 1219,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13386,14 +13386,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13402,15 +13402,15 @@
"groups": [
{
"title": "Properties",
- "children": [1217, 1218]
+ "children": [1218, 1219]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13418,14 +13418,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1219,
+ "id": 1220,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1220,
+ "id": 1221,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13433,22 +13433,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1221,
+ "id": 1222,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1224,
+ "id": 1225,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -13464,9 +13464,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1124,
+ "line": 1133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1133"
}
],
"type": {
@@ -13475,7 +13475,7 @@
}
},
{
- "id": 1222,
+ "id": 1223,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -13491,9 +13491,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1118,
+ "line": 1127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1127"
}
],
"type": {
@@ -13502,7 +13502,7 @@
}
},
{
- "id": 1223,
+ "id": 1224,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13518,9 +13518,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1121,
+ "line": 1130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1130"
}
],
"type": {
@@ -13532,22 +13532,22 @@
"groups": [
{
"title": "Properties",
- "children": [1224, 1222, 1223]
+ "children": [1225, 1223, 1224]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
}
},
{
- "id": 1225,
+ "id": 1226,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13555,9 +13555,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -13569,15 +13569,15 @@
"groups": [
{
"title": "Properties",
- "children": [1220, 1225]
+ "children": [1221, 1226]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13590,7 +13590,7 @@
}
},
{
- "id": 1226,
+ "id": 1227,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -13598,14 +13598,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1260,
+ "line": 1269,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1260"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1269"
}
],
"parameters": [
{
- "id": 1227,
+ "id": 1228,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -13613,14 +13613,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1228,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1229,
+ "id": 1230,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -13636,9 +13636,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1028,
+ "line": 1037,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1028"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1037"
}
],
"type": {
@@ -13647,7 +13647,7 @@
}
},
{
- "id": 1230,
+ "id": 1231,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -13655,22 +13655,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1047,
+ "line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1047"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1231,
+ "id": 1232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1232,
+ "id": 1233,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -13686,9 +13686,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1049,
+ "line": 1058,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1049"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1058"
}
],
"type": {
@@ -13697,7 +13697,7 @@
}
},
{
- "id": 1233,
+ "id": 1234,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -13715,9 +13715,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1051,
+ "line": 1060,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1051"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1060"
}
],
"type": {
@@ -13732,15 +13732,15 @@
"groups": [
{
"title": "Properties",
- "children": [1232, 1233]
+ "children": [1233, 1234]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1047,
+ "line": 1056,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1047"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1056"
}
]
}
@@ -13750,15 +13750,15 @@
"groups": [
{
"title": "Properties",
- "children": [1229, 1230]
+ "children": [1230, 1231]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13778,14 +13778,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1234,
+ "id": 1235,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1235,
+ "id": 1236,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13793,9 +13793,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -13804,7 +13804,7 @@
}
},
{
- "id": 1236,
+ "id": 1237,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13812,14 +13812,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13828,15 +13828,15 @@
"groups": [
{
"title": "Properties",
- "children": [1235, 1236]
+ "children": [1236, 1237]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -13844,14 +13844,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1237,
+ "id": 1238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1238,
+ "id": 1239,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13859,22 +13859,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1242,
+ "id": 1243,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -13890,9 +13890,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1124,
+ "line": 1133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1133"
}
],
"type": {
@@ -13901,7 +13901,7 @@
}
},
{
- "id": 1240,
+ "id": 1241,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -13917,9 +13917,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1118,
+ "line": 1127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1127"
}
],
"type": {
@@ -13928,7 +13928,7 @@
}
},
{
- "id": 1241,
+ "id": 1242,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13944,9 +13944,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1121,
+ "line": 1130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1130"
}
],
"type": {
@@ -13955,7 +13955,7 @@
}
},
{
- "id": 1243,
+ "id": 1244,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -13963,9 +13963,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1144,
+ "line": 1153,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1153"
}
],
"type": {
@@ -13974,14 +13974,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1244,
+ "id": 1245,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1246,
+ "id": 1247,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -13989,22 +13989,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1147,
+ "line": 1156,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1156"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1247,
+ "id": 1248,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1248,
+ "id": 1249,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -14012,9 +14012,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1147,
+ "line": 1156,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1156"
}
],
"type": {
@@ -14031,22 +14031,22 @@
"groups": [
{
"title": "Properties",
- "children": [1248]
+ "children": [1249]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1147,
+ "line": 1156,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1156"
}
]
}
}
},
{
- "id": 1245,
+ "id": 1246,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -14054,9 +14054,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1146,
+ "line": 1155,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1146"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1155"
}
],
"type": {
@@ -14068,15 +14068,15 @@
"groups": [
{
"title": "Properties",
- "children": [1246, 1245]
+ "children": [1247, 1246]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1145,
+ "line": 1154,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1154"
}
]
}
@@ -14084,14 +14084,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1249,
+ "id": 1250,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1251,
+ "id": 1252,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -14099,22 +14099,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1151,
+ "line": 1160,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1160"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1252,
+ "id": 1253,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1253,
+ "id": 1254,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -14122,9 +14122,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1151,
+ "line": 1160,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1160"
}
],
"type": {
@@ -14141,22 +14141,22 @@
"groups": [
{
"title": "Properties",
- "children": [1253]
+ "children": [1254]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1151,
+ "line": 1160,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1160"
}
]
}
}
},
{
- "id": 1250,
+ "id": 1251,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -14164,9 +14164,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1150,
+ "line": 1159,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1150"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1159"
}
],
"type": {
@@ -14178,15 +14178,15 @@
"groups": [
{
"title": "Properties",
- "children": [1251, 1250]
+ "children": [1252, 1251]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1149,
+ "line": 1158,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1149"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1158"
}
]
}
@@ -14198,22 +14198,22 @@
"groups": [
{
"title": "Properties",
- "children": [1242, 1240, 1241, 1243]
+ "children": [1243, 1241, 1242, 1244]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
}
},
{
- "id": 1254,
+ "id": 1255,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -14221,9 +14221,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -14235,15 +14235,15 @@
"groups": [
{
"title": "Properties",
- "children": [1238, 1254]
+ "children": [1239, 1255]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -14256,7 +14256,7 @@
}
},
{
- "id": 1255,
+ "id": 1256,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -14264,21 +14264,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1261,
+ "line": 1270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1270"
}
],
"parameters": [
{
- "id": 1256,
+ "id": 1257,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1145,
+ "target": 1146,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -14293,7 +14293,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1164,
+ "target": 1165,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -14305,7 +14305,7 @@
]
},
{
- "id": 1281,
+ "id": 1282,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -14313,14 +14313,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1282,
+ "line": 1291,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1282"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1291"
}
],
"signatures": [
{
- "id": 1282,
+ "id": 1283,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -14336,14 +14336,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1282,
+ "line": 1291,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1282"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1291"
}
],
"parameters": [
{
- "id": 1283,
+ "id": 1284,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14351,14 +14351,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1284,
+ "id": 1285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1286,
+ "id": 1287,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -14374,9 +14374,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 982,
+ "line": 991,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L991"
}
],
"type": {
@@ -14385,7 +14385,7 @@
}
},
{
- "id": 1285,
+ "id": 1286,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -14401,9 +14401,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -14415,15 +14415,15 @@
"groups": [
{
"title": "Properties",
- "children": [1286, 1285]
+ "children": [1287, 1286]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -14439,7 +14439,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -14451,7 +14451,7 @@
]
},
{
- "id": 1176,
+ "id": 1177,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -14459,32 +14459,32 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1249,
+ "line": 1258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1258"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1250,
+ "line": 1259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1259"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1251,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1260"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1252,
+ "line": 1261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1261"
}
],
"signatures": [
{
- "id": 1177,
+ "id": 1178,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14516,14 +14516,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1249,
+ "line": 1258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1258"
}
],
"parameters": [
{
- "id": 1178,
+ "id": 1179,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14531,14 +14531,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1179,
+ "id": 1180,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1180,
+ "id": 1181,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -14554,9 +14554,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1430,
+ "line": 1439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1439"
}
],
"type": {
@@ -14565,7 +14565,7 @@
}
},
{
- "id": 1181,
+ "id": 1182,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14583,9 +14583,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1432,
+ "line": 1441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1441"
}
],
"type": {
@@ -14594,7 +14594,7 @@
}
},
{
- "id": 1182,
+ "id": 1183,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -14612,9 +14612,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1437,
+ "line": 1446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1446"
}
],
"type": {
@@ -14626,15 +14626,15 @@
"groups": [
{
"title": "Properties",
- "children": [1180, 1181, 1182]
+ "children": [1181, 1182, 1183]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -14650,7 +14650,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1337,
+ "target": 1338,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -14660,7 +14660,7 @@
}
},
{
- "id": 1183,
+ "id": 1184,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14668,14 +14668,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1250,
+ "line": 1259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1259"
}
],
"parameters": [
{
- "id": 1184,
+ "id": 1185,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14683,14 +14683,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1185,
+ "id": 1186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1186,
+ "id": 1187,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -14706,9 +14706,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1430,
+ "line": 1439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1439"
}
],
"type": {
@@ -14717,7 +14717,7 @@
}
},
{
- "id": 1187,
+ "id": 1188,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14735,9 +14735,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1432,
+ "line": 1441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1441"
}
],
"type": {
@@ -14746,7 +14746,7 @@
}
},
{
- "id": 1188,
+ "id": 1189,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -14762,9 +14762,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1444,
+ "line": 1453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1453"
}
],
"type": {
@@ -14776,15 +14776,15 @@
"groups": [
{
"title": "Properties",
- "children": [1186, 1187, 1188]
+ "children": [1187, 1188, 1189]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -14800,7 +14800,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1338,
+ "target": 1339,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -14810,7 +14810,7 @@
}
},
{
- "id": 1189,
+ "id": 1190,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14818,14 +14818,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1251,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1260"
}
],
"parameters": [
{
- "id": 1190,
+ "id": 1191,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14833,14 +14833,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1191,
+ "id": 1192,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1192,
+ "id": 1193,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -14856,9 +14856,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1430,
+ "line": 1439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1439"
}
],
"type": {
@@ -14867,7 +14867,7 @@
}
},
{
- "id": 1193,
+ "id": 1194,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14885,9 +14885,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1432,
+ "line": 1441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1441"
}
],
"type": {
@@ -14899,15 +14899,15 @@
"groups": [
{
"title": "Properties",
- "children": [1192, 1193]
+ "children": [1193, 1194]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -14923,7 +14923,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1339,
+ "target": 1340,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -14933,7 +14933,7 @@
}
},
{
- "id": 1194,
+ "id": 1195,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14941,21 +14941,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1252,
+ "line": 1261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1261"
}
],
"parameters": [
{
- "id": 1195,
+ "id": 1196,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1128,
+ "target": 1129,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -14970,7 +14970,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1155,
+ "target": 1156,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -14982,7 +14982,7 @@
]
},
{
- "id": 1289,
+ "id": 1290,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -14990,14 +14990,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1309,
+ "line": 1318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1318"
}
],
"signatures": [
{
- "id": 1290,
+ "id": 1291,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -15037,14 +15037,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1309,
+ "line": 1318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1318"
}
],
"parameters": [
{
- "id": 1291,
+ "id": 1292,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -15074,7 +15074,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1170,
+ "target": 1171,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -15086,7 +15086,7 @@
]
},
{
- "id": 1287,
+ "id": 1288,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -15094,14 +15094,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1292,
+ "line": 1301,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1301"
}
],
"signatures": [
{
- "id": 1288,
+ "id": 1289,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -15125,7 +15125,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1176
+ "target": 1177
},
{
"kind": "text",
@@ -15139,7 +15139,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1289
+ "target": 1290
},
{
"kind": "text",
@@ -15166,9 +15166,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1292,
+ "line": 1301,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1301"
}
],
"type": {
@@ -15180,7 +15180,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1165,
+ "target": 1166,
"typeArguments": [
{
"type": "typeOperator",
@@ -15215,7 +15215,7 @@
]
},
{
- "id": 1278,
+ "id": 1279,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -15223,14 +15223,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1276,
+ "line": 1285,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1285"
}
],
"signatures": [
{
- "id": 1279,
+ "id": 1280,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -15262,21 +15262,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1276,
+ "line": 1285,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1285"
}
],
"parameters": [
{
- "id": 1280,
+ "id": 1281,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1129,
+ "target": 1130,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -15291,7 +15291,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1156,
+ "target": 1157,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -15303,7 +15303,7 @@
]
},
{
- "id": 1257,
+ "id": 1258,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -15311,32 +15311,32 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1267,
+ "line": 1276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1276"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1268,
+ "line": 1277,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1277"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1269,
+ "line": 1278,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1278"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1270,
+ "line": 1279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1279"
}
],
"signatures": [
{
- "id": 1258,
+ "id": 1259,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15352,14 +15352,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1267,
+ "line": 1276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1276"
}
],
"parameters": [
{
- "id": 1259,
+ "id": 1260,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -15367,14 +15367,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1260,
+ "id": 1261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1262,
+ "id": 1263,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -15390,9 +15390,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 977,
+ "line": 986,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L977"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -15401,7 +15401,7 @@
}
},
{
- "id": 1263,
+ "id": 1264,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -15417,9 +15417,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 982,
+ "line": 991,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L991"
}
],
"type": {
@@ -15428,7 +15428,7 @@
}
},
{
- "id": 1261,
+ "id": 1262,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -15444,9 +15444,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -15458,15 +15458,15 @@
"groups": [
{
"title": "Properties",
- "children": [1262, 1263, 1261]
+ "children": [1263, 1264, 1262]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -15482,7 +15482,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15492,7 +15492,7 @@
}
},
{
- "id": 1264,
+ "id": 1265,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15500,14 +15500,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1268,
+ "line": 1277,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1277"
}
],
"parameters": [
{
- "id": 1265,
+ "id": 1266,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -15515,14 +15515,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1266,
+ "id": 1267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1268,
+ "id": 1269,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -15538,9 +15538,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 977,
+ "line": 986,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L977"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -15549,7 +15549,7 @@
}
},
{
- "id": 1269,
+ "id": 1270,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -15565,9 +15565,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 982,
+ "line": 991,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L991"
}
],
"type": {
@@ -15576,7 +15576,7 @@
}
},
{
- "id": 1267,
+ "id": 1268,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -15592,9 +15592,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -15606,15 +15606,15 @@
"groups": [
{
"title": "Properties",
- "children": [1268, 1269, 1267]
+ "children": [1269, 1270, 1268]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -15630,7 +15630,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15640,7 +15640,7 @@
}
},
{
- "id": 1270,
+ "id": 1271,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15648,14 +15648,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1269,
+ "line": 1278,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1278"
}
],
"parameters": [
{
- "id": 1271,
+ "id": 1272,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -15663,14 +15663,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1272,
+ "id": 1273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1274,
+ "id": 1275,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -15686,9 +15686,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 977,
+ "line": 986,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L977"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -15697,7 +15697,7 @@
}
},
{
- "id": 1273,
+ "id": 1274,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -15713,9 +15713,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 975,
+ "line": 984,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L975"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -15724,7 +15724,7 @@
}
},
{
- "id": 1275,
+ "id": 1276,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -15732,9 +15732,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1012,
+ "line": 1021,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1012"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1021"
}
],
"type": {
@@ -15780,15 +15780,15 @@
"groups": [
{
"title": "Properties",
- "children": [1274, 1273, 1275]
+ "children": [1275, 1274, 1276]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -15804,7 +15804,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15814,7 +15814,7 @@
}
},
{
- "id": 1276,
+ "id": 1277,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15822,21 +15822,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1270,
+ "line": 1279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1279"
}
],
"parameters": [
{
- "id": 1277,
+ "id": 1278,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1140,
+ "target": 1141,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -15851,7 +15851,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15866,31 +15866,31 @@
"groups": [
{
"title": "Properties",
- "children": [1292]
+ "children": [1293]
},
{
"title": "Methods",
- "children": [1196, 1281, 1176, 1289, 1287, 1278, 1257]
+ "children": [1197, 1282, 1177, 1290, 1288, 1279, 1258]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1239,
+ "line": 1248,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1248"
}
]
},
{
- "id": 1375,
+ "id": 1376,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1378,
+ "id": 1379,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -15900,9 +15900,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1573,
+ "line": 1582,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1573"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1582"
}
],
"type": {
@@ -15911,7 +15911,7 @@
}
},
{
- "id": 1377,
+ "id": 1378,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -15919,9 +15919,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1572,
+ "line": 1581,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1572"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1581"
}
],
"type": {
@@ -15933,7 +15933,7 @@
}
},
{
- "id": 1379,
+ "id": 1380,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -15943,9 +15943,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1574,
+ "line": 1583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1574"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1583"
}
],
"type": {
@@ -15954,7 +15954,7 @@
}
},
{
- "id": 1376,
+ "id": 1377,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -15962,9 +15962,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1571,
+ "line": 1580,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1580"
}
],
"type": {
@@ -15989,20 +15989,20 @@
"groups": [
{
"title": "Properties",
- "children": [1378, 1377, 1379, 1376]
+ "children": [1379, 1378, 1380, 1377]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1570,
+ "line": 1579,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1570"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1579"
}
],
"indexSignatures": [
{
- "id": 1380,
+ "id": 1381,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16010,14 +16010,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1575,
+ "line": 1584,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1575"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1584"
}
],
"parameters": [
{
- "id": 1381,
+ "id": 1382,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16036,7 +16036,7 @@
]
},
{
- "id": 1355,
+ "id": 1356,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -16062,7 +16062,7 @@
},
"children": [
{
- "id": 1371,
+ "id": 1372,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -16072,14 +16072,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1532,
+ "line": 1541,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1532"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1541"
}
],
"type": {
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -16090,7 +16090,7 @@
}
},
{
- "id": 1363,
+ "id": 1364,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -16108,9 +16108,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1561,
+ "line": 1570,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1570"
}
],
"type": {
@@ -16127,7 +16127,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 837,
+ "target": 838,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
@@ -16136,7 +16136,7 @@
}
},
{
- "id": 1361,
+ "id": 1362,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -16146,20 +16146,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1553,
+ "line": 1562,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1553"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1562"
}
],
"type": {
"type": "reference",
- "target": 864,
+ "target": 865,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1367,
+ "id": 1368,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -16169,9 +16169,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1528,
+ "line": 1537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1528"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1537"
}
],
"type": {
@@ -16197,7 +16197,7 @@
}
},
{
- "id": 1356,
+ "id": 1357,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -16207,9 +16207,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1546,
+ "line": 1555,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1546"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1555"
}
],
"type": {
@@ -16218,7 +16218,7 @@
}
},
{
- "id": 1368,
+ "id": 1369,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -16228,9 +16228,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1529,
+ "line": 1538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1529"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1538"
}
],
"type": {
@@ -16244,7 +16244,7 @@
}
},
{
- "id": 1369,
+ "id": 1370,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -16254,9 +16254,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1530,
+ "line": 1539,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1539"
}
],
"type": {
@@ -16270,7 +16270,7 @@
}
},
{
- "id": 1358,
+ "id": 1359,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -16280,9 +16280,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1548,
+ "line": 1557,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1548"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1557"
}
],
"type": {
@@ -16291,7 +16291,7 @@
}
},
{
- "id": 1365,
+ "id": 1366,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -16301,9 +16301,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1526,
+ "line": 1535,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1526"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1535"
}
],
"type": {
@@ -16317,7 +16317,7 @@
}
},
{
- "id": 1359,
+ "id": 1360,
"name": "jti",
"variant": "declaration",
"kind": 1024,
@@ -16327,9 +16327,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1551,
+ "line": 1560,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1551"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1560"
}
],
"type": {
@@ -16338,7 +16338,7 @@
}
},
{
- "id": 1360,
+ "id": 1361,
"name": "nbf",
"variant": "declaration",
"kind": 1024,
@@ -16348,9 +16348,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1552,
+ "line": 1561,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1552"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1561"
}
],
"type": {
@@ -16359,7 +16359,7 @@
}
},
{
- "id": 1357,
+ "id": 1358,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -16369,9 +16369,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1547,
+ "line": 1556,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1547"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1556"
}
],
"type": {
@@ -16380,7 +16380,7 @@
}
},
{
- "id": 1364,
+ "id": 1365,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -16390,9 +16390,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1564,
+ "line": 1573,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1573"
}
],
"type": {
@@ -16401,7 +16401,7 @@
}
},
{
- "id": 1370,
+ "id": 1371,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -16411,9 +16411,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1531,
+ "line": 1540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1531"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1540"
}
],
"type": {
@@ -16427,7 +16427,7 @@
}
},
{
- "id": 1372,
+ "id": 1373,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -16437,9 +16437,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1533,
+ "line": 1542,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1533"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1542"
}
],
"type": {
@@ -16453,7 +16453,7 @@
}
},
{
- "id": 1366,
+ "id": 1367,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -16463,9 +16463,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1527,
+ "line": 1536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1536"
}
],
"type": {
@@ -16479,7 +16479,7 @@
}
},
{
- "id": 1362,
+ "id": 1363,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -16489,14 +16489,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1554,
+ "line": 1563,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1554"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1563"
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -16506,22 +16506,22 @@
{
"title": "Properties",
"children": [
- 1371, 1363, 1361, 1367, 1356, 1368, 1369, 1358, 1365, 1359, 1360, 1357, 1364, 1370,
- 1372, 1366, 1362
+ 1372, 1364, 1362, 1368, 1357, 1369, 1370, 1359, 1366, 1360, 1361, 1358, 1365, 1371,
+ 1373, 1367, 1363
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1544,
+ "line": 1553,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1544"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1553"
}
],
"indexSignatures": [
{
- "id": 1373,
+ "id": 1374,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16529,14 +16529,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1567,
+ "line": 1576,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1576"
}
],
"parameters": [
{
- "id": 1374,
+ "id": 1375,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16556,21 +16556,21 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1345,
+ "target": 1346,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 826,
+ "id": 827,
"name": "Session",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 829,
+ "id": 830,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -16586,9 +16586,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 297,
+ "line": 306,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L306"
}
],
"type": {
@@ -16597,7 +16597,7 @@
}
},
{
- "id": 832,
+ "id": 833,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -16615,9 +16615,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 309,
+ "line": 318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L318"
}
],
"type": {
@@ -16626,7 +16626,7 @@
}
},
{
- "id": 831,
+ "id": 832,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -16642,9 +16642,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 305,
+ "line": 314,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L314"
}
],
"type": {
@@ -16653,7 +16653,7 @@
}
},
{
- "id": 828,
+ "id": 829,
"name": "provider_refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -16671,9 +16671,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 293,
+ "line": 302,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L302"
}
],
"type": {
@@ -16691,7 +16691,7 @@
}
},
{
- "id": 827,
+ "id": 828,
"name": "provider_token",
"variant": "declaration",
"kind": 1024,
@@ -16709,9 +16709,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 288,
+ "line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L297"
}
],
"type": {
@@ -16729,7 +16729,7 @@
}
},
{
- "id": 830,
+ "id": 831,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -16745,9 +16745,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 301,
+ "line": 310,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L310"
}
],
"type": {
@@ -16756,7 +16756,7 @@
}
},
{
- "id": 833,
+ "id": 834,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -16764,9 +16764,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 310,
+ "line": 319,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L319"
}
],
"type": {
@@ -16775,7 +16775,7 @@
}
},
{
- "id": 834,
+ "id": 835,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -16791,14 +16791,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 315,
+ "line": 324,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L324"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -16807,27 +16807,27 @@
"groups": [
{
"title": "Properties",
- "children": [829, 832, 831, 828, 827, 830, 833, 834]
+ "children": [830, 833, 832, 829, 828, 831, 834, 835]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 284,
+ "line": 293,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L284"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L293"
}
]
},
{
- "id": 918,
+ "id": 919,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 920,
+ "id": 921,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -16843,15 +16843,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 579,
+ "line": 588,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L588"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 921,
+ "id": 922,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16859,14 +16859,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 579,
+ "line": 588,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L588"
}
],
"signatures": [
{
- "id": 922,
+ "id": 923,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16874,14 +16874,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 579,
+ "line": 588,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L588"
}
],
"parameters": [
{
- "id": 923,
+ "id": 924,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -16894,7 +16894,7 @@
}
},
{
- "id": 924,
+ "id": 925,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -16908,7 +16908,7 @@
},
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -16926,7 +16926,7 @@
}
},
{
- "id": 919,
+ "id": 920,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16942,9 +16942,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 575,
+ "line": 584,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L575"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L584"
}
],
"type": {
@@ -16962,7 +16962,7 @@
}
},
{
- "id": 925,
+ "id": 926,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -16978,15 +16978,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 583,
+ "line": 592,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L592"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 926,
+ "id": 927,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16994,14 +16994,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 583,
+ "line": 592,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L592"
}
],
"signatures": [
{
- "id": 927,
+ "id": 928,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17009,9 +17009,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 583,
+ "line": 592,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L592"
}
],
"type": {
@@ -17027,27 +17027,27 @@
"groups": [
{
"title": "Properties",
- "children": [920, 919, 925]
+ "children": [921, 920, 926]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 569,
+ "line": 578,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L569"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L578"
}
]
},
{
- "id": 872,
+ "id": 873,
"name": "User",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 883,
+ "id": 884,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -17057,9 +17057,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 444,
+ "line": 453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L453"
}
],
"type": {
@@ -17068,7 +17068,7 @@
}
},
{
- "id": 874,
+ "id": 875,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -17076,20 +17076,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 435,
+ "line": 444,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L444"
}
],
"type": {
"type": "reference",
- "target": 864,
+ "target": 865,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 876,
+ "id": 877,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -17097,9 +17097,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 437,
+ "line": 446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L446"
}
],
"type": {
@@ -17108,7 +17108,7 @@
}
},
{
- "id": 898,
+ "id": 899,
"name": "banned_until",
"variant": "declaration",
"kind": 1024,
@@ -17118,9 +17118,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 459,
+ "line": 468,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L468"
}
],
"type": {
@@ -17129,7 +17129,7 @@
}
},
{
- "id": 877,
+ "id": 878,
"name": "confirmation_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -17139,9 +17139,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 438,
+ "line": 447,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L438"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L447"
}
],
"type": {
@@ -17150,7 +17150,7 @@
}
},
{
- "id": 887,
+ "id": 888,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -17160,9 +17160,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 448,
+ "line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L448"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L457"
}
],
"type": {
@@ -17171,7 +17171,7 @@
}
},
{
- "id": 886,
+ "id": 887,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -17179,9 +17179,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 447,
+ "line": 456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L456"
}
],
"type": {
@@ -17190,7 +17190,7 @@
}
},
{
- "id": 897,
+ "id": 898,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -17200,9 +17200,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 458,
+ "line": 467,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L458"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L467"
}
],
"type": {
@@ -17211,7 +17211,7 @@
}
},
{
- "id": 884,
+ "id": 885,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -17221,9 +17221,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 445,
+ "line": 454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L454"
}
],
"type": {
@@ -17232,7 +17232,7 @@
}
},
{
- "id": 879,
+ "id": 880,
"name": "email_change_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -17242,9 +17242,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 440,
+ "line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L449"
}
],
"type": {
@@ -17253,7 +17253,7 @@
}
},
{
- "id": 888,
+ "id": 889,
"name": "email_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -17263,9 +17263,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 449,
+ "line": 458,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L458"
}
],
"type": {
@@ -17274,7 +17274,7 @@
}
},
{
- "id": 896,
+ "id": 897,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -17284,9 +17284,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 457,
+ "line": 466,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L466"
}
],
"type": {
@@ -17296,7 +17296,7 @@
"types": [
{
"type": "reference",
- "target": 853,
+ "target": 854,
"typeArguments": [
{
"type": "union",
@@ -17325,7 +17325,7 @@
},
{
"type": "reference",
- "target": 853,
+ "target": 854,
"typeArguments": [
{
"type": "union",
@@ -17357,7 +17357,7 @@
}
},
{
- "id": 873,
+ "id": 874,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17365,9 +17365,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 434,
+ "line": 443,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L443"
}
],
"type": {
@@ -17376,7 +17376,7 @@
}
},
{
- "id": 893,
+ "id": 894,
"name": "identities",
"variant": "declaration",
"kind": 1024,
@@ -17386,23 +17386,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 454,
+ "line": 463,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L463"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 882,
+ "id": 883,
"name": "invited_at",
"variant": "declaration",
"kind": 1024,
@@ -17412,9 +17412,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 443,
+ "line": 452,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L443"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L452"
}
],
"type": {
@@ -17423,7 +17423,7 @@
}
},
{
- "id": 894,
+ "id": 895,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -17433,9 +17433,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 455,
+ "line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L464"
}
],
"type": {
@@ -17444,7 +17444,7 @@
}
},
{
- "id": 895,
+ "id": 896,
"name": "is_sso_user",
"variant": "declaration",
"kind": 1024,
@@ -17454,9 +17454,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 456,
+ "line": 465,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L465"
}
],
"type": {
@@ -17465,7 +17465,7 @@
}
},
{
- "id": 890,
+ "id": 891,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -17475,9 +17475,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 451,
+ "line": 460,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L460"
}
],
"type": {
@@ -17486,7 +17486,7 @@
}
},
{
- "id": 880,
+ "id": 881,
"name": "new_email",
"variant": "declaration",
"kind": 1024,
@@ -17496,9 +17496,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 441,
+ "line": 450,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L450"
}
],
"type": {
@@ -17507,7 +17507,7 @@
}
},
{
- "id": 881,
+ "id": 882,
"name": "new_phone",
"variant": "declaration",
"kind": 1024,
@@ -17517,9 +17517,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 442,
+ "line": 451,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L451"
}
],
"type": {
@@ -17528,7 +17528,7 @@
}
},
{
- "id": 885,
+ "id": 886,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -17538,9 +17538,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 446,
+ "line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L455"
}
],
"type": {
@@ -17549,7 +17549,7 @@
}
},
{
- "id": 889,
+ "id": 890,
"name": "phone_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -17559,9 +17559,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 450,
+ "line": 459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L459"
}
],
"type": {
@@ -17570,7 +17570,7 @@
}
},
{
- "id": 878,
+ "id": 879,
"name": "recovery_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -17580,9 +17580,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 439,
+ "line": 448,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L448"
}
],
"type": {
@@ -17591,7 +17591,7 @@
}
},
{
- "id": 891,
+ "id": 892,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -17601,9 +17601,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 452,
+ "line": 461,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L461"
}
],
"type": {
@@ -17612,7 +17612,7 @@
}
},
{
- "id": 892,
+ "id": 893,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -17622,9 +17622,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 453,
+ "line": 462,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L462"
}
],
"type": {
@@ -17633,7 +17633,7 @@
}
},
{
- "id": 875,
+ "id": 876,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -17641,14 +17641,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 436,
+ "line": 445,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L445"
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -17658,29 +17658,29 @@
{
"title": "Properties",
"children": [
- 883, 874, 876, 898, 877, 887, 886, 897, 884, 879, 888, 896, 873, 893, 882, 894, 895,
- 890, 880, 881, 885, 889, 878, 891, 892, 875
+ 884, 875, 877, 899, 878, 888, 887, 898, 885, 880, 889, 897, 874, 894, 883, 895, 896,
+ 891, 881, 882, 886, 890, 879, 892, 893, 876
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 433,
+ "line": 442,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L433"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L442"
}
]
},
{
- "id": 864,
+ "id": 865,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 865,
+ "id": 866,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -17698,9 +17698,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 421,
+ "line": 430,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L430"
}
],
"type": {
@@ -17709,7 +17709,7 @@
}
},
{
- "id": 866,
+ "id": 867,
"name": "providers",
"variant": "declaration",
"kind": 1024,
@@ -17727,9 +17727,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 425,
+ "line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L425"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L434"
}
],
"type": {
@@ -17744,20 +17744,20 @@
"groups": [
{
"title": "Properties",
- "children": [865, 866]
+ "children": [866, 867]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 417,
+ "line": 426,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L417"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L426"
}
],
"indexSignatures": [
{
- "id": 867,
+ "id": 868,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17765,14 +17765,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 426,
+ "line": 435,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L435"
}
],
"parameters": [
{
- "id": 868,
+ "id": 869,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17791,14 +17791,14 @@
]
},
{
- "id": 899,
+ "id": 900,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 904,
+ "id": 905,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -17832,9 +17832,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 491,
+ "line": 500,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L500"
}
],
"type": {
@@ -17843,7 +17843,7 @@
}
},
{
- "id": 900,
+ "id": 901,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -17861,9 +17861,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 466,
+ "line": 475,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L466"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L475"
}
],
"type": {
@@ -17872,7 +17872,7 @@
}
},
{
- "id": 903,
+ "id": 904,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -17890,9 +17890,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 483,
+ "line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L492"
}
],
"type": {
@@ -17901,7 +17901,7 @@
}
},
{
- "id": 902,
+ "id": 903,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -17919,9 +17919,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 476,
+ "line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -17930,7 +17930,7 @@
}
},
{
- "id": 901,
+ "id": 902,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -17948,9 +17948,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 471,
+ "line": 480,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L480"
}
],
"type": {
@@ -17962,27 +17962,27 @@
"groups": [
{
"title": "Properties",
- "children": [904, 900, 903, 902, 901]
+ "children": [905, 901, 904, 903, 902]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 462,
+ "line": 471,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L462"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L471"
}
]
},
{
- "id": 840,
+ "id": 841,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 849,
+ "id": 850,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -17992,9 +17992,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 366,
+ "line": 375,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L366"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L375"
}
],
"type": {
@@ -18003,7 +18003,7 @@
}
},
{
- "id": 841,
+ "id": 842,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -18011,9 +18011,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 359,
+ "line": 368,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L368"
}
],
"type": {
@@ -18022,7 +18022,7 @@
}
},
{
- "id": 843,
+ "id": 844,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -18032,15 +18032,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 361,
+ "line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L370"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 844,
+ "id": 845,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18048,14 +18048,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 361,
+ "line": 370,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L370"
}
],
"indexSignatures": [
{
- "id": 845,
+ "id": 846,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18063,14 +18063,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 362,
+ "line": 371,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L362"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L371"
}
],
"parameters": [
{
- "id": 846,
+ "id": 847,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18091,7 +18091,7 @@
}
},
{
- "id": 847,
+ "id": 848,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -18099,9 +18099,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 364,
+ "line": 373,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L364"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L373"
}
],
"type": {
@@ -18110,7 +18110,7 @@
}
},
{
- "id": 850,
+ "id": 851,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -18120,9 +18120,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 367,
+ "line": 376,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L367"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L376"
}
],
"type": {
@@ -18131,7 +18131,7 @@
}
},
{
- "id": 848,
+ "id": 849,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -18139,9 +18139,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 365,
+ "line": 374,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L365"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L374"
}
],
"type": {
@@ -18150,7 +18150,7 @@
}
},
{
- "id": 851,
+ "id": 852,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -18160,9 +18160,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 368,
+ "line": 377,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L368"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L377"
}
],
"type": {
@@ -18171,7 +18171,7 @@
}
},
{
- "id": 842,
+ "id": 843,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -18179,9 +18179,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 360,
+ "line": 369,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L369"
}
],
"type": {
@@ -18193,20 +18193,20 @@
"groups": [
{
"title": "Properties",
- "children": [849, 841, 843, 847, 850, 848, 851, 842]
+ "children": [850, 842, 844, 848, 851, 849, 852, 843]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 358,
+ "line": 367,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L367"
}
]
},
{
- "id": 869,
+ "id": 870,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -18214,14 +18214,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 429,
+ "line": 438,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L438"
}
],
"indexSignatures": [
{
- "id": 870,
+ "id": 871,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18229,14 +18229,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 430,
+ "line": 439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L430"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L439"
}
],
"parameters": [
{
- "id": 871,
+ "id": 872,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18255,14 +18255,14 @@
]
},
{
- "id": 1048,
+ "id": 1049,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1049,
+ "id": 1050,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -18278,9 +18278,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 798,
+ "line": 807,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L798"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L807"
}
],
"type": {
@@ -18289,7 +18289,7 @@
}
},
{
- "id": 1052,
+ "id": 1053,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -18299,22 +18299,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 803,
+ "line": 812,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L812"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1053,
+ "id": 1054,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1055,
+ "id": 1056,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -18338,9 +18338,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 811,
+ "line": 820,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L811"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L820"
}
],
"type": {
@@ -18349,7 +18349,7 @@
}
},
{
- "id": 1054,
+ "id": 1055,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -18367,9 +18367,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 805,
+ "line": 814,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L805"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L814"
}
],
"type": {
@@ -18381,22 +18381,22 @@
"groups": [
{
"title": "Properties",
- "children": [1055, 1054]
+ "children": [1056, 1055]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 803,
+ "line": 812,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L812"
}
]
}
}
},
{
- "id": 1050,
+ "id": 1051,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -18412,9 +18412,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 800,
+ "line": 809,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L800"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L809"
}
],
"type": {
@@ -18423,7 +18423,7 @@
}
},
{
- "id": 1051,
+ "id": 1052,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18439,14 +18439,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 802,
+ "line": 811,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L802"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L811"
}
],
"type": {
"type": "reference",
- "target": 1060,
+ "target": 1061,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -18455,27 +18455,27 @@
"groups": [
{
"title": "Properties",
- "children": [1049, 1052, 1050, 1051]
+ "children": [1050, 1053, 1051, 1052]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 796,
+ "line": 805,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L796"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L805"
}
]
},
{
- "id": 1040,
+ "id": 1041,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1044,
+ "id": 1045,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -18485,22 +18485,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 784,
+ "line": 793,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L784"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L793"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1045,
+ "id": 1046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1047,
+ "id": 1048,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -18524,9 +18524,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 793,
+ "line": 802,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L793"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L802"
}
],
"type": {
@@ -18535,7 +18535,7 @@
}
},
{
- "id": 1046,
+ "id": 1047,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -18553,9 +18553,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 786,
+ "line": 795,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L795"
}
],
"type": {
@@ -18567,22 +18567,22 @@
"groups": [
{
"title": "Properties",
- "children": [1047, 1046]
+ "children": [1048, 1047]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 784,
+ "line": 793,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L784"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L793"
}
]
}
}
},
{
- "id": 1041,
+ "id": 1042,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -18598,9 +18598,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 779,
+ "line": 788,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L779"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L788"
}
],
"type": {
@@ -18609,7 +18609,7 @@
}
},
{
- "id": 1042,
+ "id": 1043,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -18625,9 +18625,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 781,
+ "line": 790,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L790"
}
],
"type": {
@@ -18636,7 +18636,7 @@
}
},
{
- "id": 1043,
+ "id": 1044,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18652,14 +18652,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 783,
+ "line": 792,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L783"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L792"
}
],
"type": {
"type": "reference",
- "target": 1059,
+ "target": 1060,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -18668,27 +18668,27 @@
"groups": [
{
"title": "Properties",
- "children": [1044, 1041, 1042, 1043]
+ "children": [1045, 1042, 1043, 1044]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 777,
+ "line": 786,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L786"
}
]
},
{
- "id": 1056,
+ "id": 1057,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1057,
+ "id": 1058,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -18704,9 +18704,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 817,
+ "line": 826,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L826"
}
],
"type": {
@@ -18715,7 +18715,7 @@
}
},
{
- "id": 1058,
+ "id": 1059,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18731,14 +18731,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 820,
+ "line": 829,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L820"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L829"
}
],
"type": {
"type": "reference",
- "target": 1060,
+ "target": 1061,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -18747,20 +18747,20 @@
"groups": [
{
"title": "Properties",
- "children": [1057, 1058]
+ "children": [1058, 1059]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 815,
+ "line": 824,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L815"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L824"
}
]
},
{
- "id": 835,
+ "id": 836,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -18768,9 +18768,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 333,
+ "line": 342,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L342"
}
],
"type": {
@@ -18806,7 +18806,7 @@
{
"type": "reflection",
"declaration": {
- "id": 836,
+ "id": 837,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18814,9 +18814,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 333,
+ "line": 342,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L342"
}
]
}
@@ -18837,7 +18837,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 47,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L47"
}
],
"type": {
@@ -18887,7 +18887,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 45,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L45"
}
],
"type": {
@@ -18896,7 +18896,7 @@
}
},
{
- "id": 1169,
+ "id": 1170,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -18904,9 +18904,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1209,
+ "line": 1218,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1218"
}
],
"type": {
@@ -18924,7 +18924,7 @@
}
},
{
- "id": 964,
+ "id": 965,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -18932,9 +18932,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 658,
+ "line": 667,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L658"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L667"
}
],
"type": {
@@ -18952,7 +18952,7 @@
}
},
{
- "id": 1296,
+ "id": 1297,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -18969,22 +18969,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1327,
+ "line": 1336,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1336"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1297,
+ "id": 1298,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1298,
+ "id": 1299,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -19000,9 +19000,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1329,
+ "line": 1338,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1329"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1338"
}
],
"type": {
@@ -19011,7 +19011,7 @@
}
},
{
- "id": 1299,
+ "id": 1300,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -19027,9 +19027,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1332,
+ "line": 1341,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1332"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1341"
}
],
"type": {
@@ -19041,22 +19041,22 @@
"groups": [
{
"title": "Properties",
- "children": [1298, 1299]
+ "children": [1299, 1300]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1327,
+ "line": 1336,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1336"
}
]
}
}
},
{
- "id": 1293,
+ "id": 1294,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19073,26 +19073,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1320,
+ "line": 1329,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1320"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1329"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1294,
+ "id": 1295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1295,
+ "id": 1296,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -19108,9 +19108,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1322,
+ "line": 1331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1331"
}
],
"type": {
@@ -19122,15 +19122,15 @@
"groups": [
{
"title": "Properties",
- "children": [1295]
+ "children": [1296]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1320,
+ "line": 1329,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1320"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1329"
}
]
}
@@ -19141,7 +19141,7 @@
}
},
{
- "id": 1303,
+ "id": 1304,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -19158,22 +19158,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1346,
+ "line": 1355,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1355"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1304,
+ "id": 1305,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1305,
+ "id": 1306,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -19189,9 +19189,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1348,
+ "line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1348"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -19203,22 +19203,22 @@
"groups": [
{
"title": "Properties",
- "children": [1305]
+ "children": [1306]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1346,
+ "line": 1355,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1355"
}
]
}
}
},
{
- "id": 1300,
+ "id": 1301,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19235,26 +19235,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1338,
+ "line": 1347,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1347"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1301,
+ "id": 1302,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1302,
+ "id": 1303,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -19270,16 +19270,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1340,
+ "line": 1349,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1340"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1349"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 853,
+ "target": 854,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -19289,15 +19289,15 @@
"groups": [
{
"title": "Properties",
- "children": [1302]
+ "children": [1303]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1338,
+ "line": 1347,
"character": 60,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1347"
}
]
}
@@ -19308,7 +19308,7 @@
}
},
{
- "id": 1160,
+ "id": 1161,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19316,18 +19316,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1139,
+ "line": 1148,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1148"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19368,7 +19368,7 @@
}
},
{
- "id": 1164,
+ "id": 1165,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19376,9 +19376,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1191,
+ "line": 1200,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1191"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1200"
}
],
"type": {
@@ -19386,19 +19386,19 @@
"types": [
{
"type": "reference",
- "target": 1159,
+ "target": 1160,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1160,
+ "target": 1161,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1161,
+ "target": 1162,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -19406,7 +19406,7 @@
}
},
{
- "id": 1159,
+ "id": 1160,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19414,18 +19414,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1131,
+ "line": 1140,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1140"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19466,7 +19466,7 @@
}
},
{
- "id": 1161,
+ "id": 1162,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19495,18 +19495,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1160,
+ "line": 1169,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1160"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1169"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19547,7 +19547,7 @@
}
},
{
- "id": 1162,
+ "id": 1163,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -19563,14 +19563,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1180,
+ "line": 1189,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1189"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19607,7 +19607,7 @@
}
},
{
- "id": 1163,
+ "id": 1164,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19623,18 +19623,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1188,
+ "line": 1197,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1197"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1162,
+ "target": 1163,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -19644,7 +19644,7 @@
}
},
{
- "id": 1338,
+ "id": 1339,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19652,18 +19652,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1502,
+ "line": 1511,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1511"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19704,7 +19704,7 @@
}
},
{
- "id": 1155,
+ "id": 1156,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19712,9 +19712,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1106,
+ "line": 1115,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1115"
}
],
"type": {
@@ -19722,19 +19722,19 @@
"types": [
{
"type": "reference",
- "target": 1337,
+ "target": 1338,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1338,
+ "target": 1339,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1339,
+ "target": 1340,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -19742,7 +19742,7 @@
}
},
{
- "id": 1337,
+ "id": 1338,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19750,18 +19750,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1493,
+ "line": 1502,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1502"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19802,7 +19802,7 @@
}
},
{
- "id": 1339,
+ "id": 1340,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19831,18 +19831,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1515,
+ "line": 1524,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1515"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1524"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -19883,7 +19883,7 @@
}
},
{
- "id": 1170,
+ "id": 1171,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19891,26 +19891,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1211,
+ "line": 1220,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1220"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1171,
+ "id": 1172,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1174,
+ "id": 1175,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -19926,9 +19926,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1232,
+ "line": 1241,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1232"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1241"
}
],
"type": {
@@ -19938,7 +19938,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 837,
+ "target": 838,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
@@ -19954,7 +19954,7 @@
}
},
{
- "id": 1172,
+ "id": 1173,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -19970,9 +19970,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1213,
+ "line": 1222,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1222"
}
],
"type": {
@@ -19980,7 +19980,7 @@
"types": [
{
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -19992,7 +19992,7 @@
}
},
{
- "id": 1173,
+ "id": 1174,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -20012,7 +20012,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1196
+ "target": 1197
}
]
}
@@ -20021,9 +20021,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1221,
+ "line": 1230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1221"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1230"
}
],
"type": {
@@ -20031,7 +20031,7 @@
"types": [
{
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -20046,15 +20046,15 @@
"groups": [
{
"title": "Properties",
- "children": [1174, 1172, 1173]
+ "children": [1175, 1173, 1174]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1211,
+ "line": 1220,
"character": 74,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1220"
}
]
}
@@ -20065,7 +20065,7 @@
}
},
{
- "id": 1165,
+ "id": 1166,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20081,14 +20081,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1197,
+ "line": 1206,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1206"
}
],
"typeParameters": [
{
- "id": 1168,
+ "id": 1169,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -20123,7 +20123,7 @@
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "intersection",
@@ -20131,14 +20131,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1166,
+ "id": 1167,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1167,
+ "id": 1168,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -20154,20 +20154,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1201,
+ "line": 1210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1210"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "reference",
- "target": 853,
+ "target": 854,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -20181,15 +20181,15 @@
"groups": [
{
"title": "Properties",
- "children": [1167]
+ "children": [1168]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1199,
+ "line": 1208,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1208"
}
]
}
@@ -20205,7 +20205,7 @@
},
"objectType": {
"type": "reference",
- "target": 1168,
+ "target": 1169,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -20215,11 +20215,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "reference",
- "target": 853,
+ "target": 854,
"typeArguments": [
{
"type": "reference",
@@ -20253,7 +20253,7 @@
}
},
{
- "id": 1156,
+ "id": 1157,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20261,26 +20261,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1111,
+ "line": 1120,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1120"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1157,
+ "id": 1158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1158,
+ "id": 1159,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -20296,9 +20296,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1113,
+ "line": 1122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1122"
}
],
"type": {
@@ -20310,15 +20310,15 @@
"groups": [
{
"title": "Properties",
- "children": [1158]
+ "children": [1159]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1111,
+ "line": 1120,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1120"
}
]
}
@@ -20329,7 +20329,7 @@
}
},
{
- "id": 1154,
+ "id": 1155,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20345,18 +20345,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1104,
+ "line": 1113,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1113"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1147,
+ "target": 1148,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -20366,7 +20366,7 @@
}
},
{
- "id": 1147,
+ "id": 1148,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -20382,22 +20382,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1083,
+ "line": 1092,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1083"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1092"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1148,
+ "id": 1149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1149,
+ "id": 1150,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -20413,9 +20413,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1085,
+ "line": 1094,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1085"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1094"
}
],
"type": {
@@ -20424,7 +20424,7 @@
}
},
{
- "id": 1151,
+ "id": 1152,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -20440,9 +20440,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1091,
+ "line": 1100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1091"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1100"
}
],
"type": {
@@ -20451,7 +20451,7 @@
}
},
{
- "id": 1152,
+ "id": 1153,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -20467,9 +20467,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1094,
+ "line": 1103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1094"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1103"
}
],
"type": {
@@ -20478,7 +20478,7 @@
}
},
{
- "id": 1150,
+ "id": 1151,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -20502,9 +20502,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1088,
+ "line": 1097,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1088"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1097"
}
],
"type": {
@@ -20513,7 +20513,7 @@
}
},
{
- "id": 1153,
+ "id": 1154,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20529,14 +20529,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1097,
+ "line": 1106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1097"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1106"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -20545,22 +20545,22 @@
"groups": [
{
"title": "Properties",
- "children": [1149, 1151, 1152, 1150, 1153]
+ "children": [1150, 1152, 1153, 1151, 1154]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1083,
+ "line": 1092,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1083"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1092"
}
]
}
}
},
{
- "id": 1474,
+ "id": 1475,
"name": "AuthOAuthAuthorizationDetailsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20587,27 +20587,27 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1835,
+ "line": 1844,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1835"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1844"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "union",
"types": [
{
"type": "reference",
- "target": 1461,
+ "target": 1462,
"name": "OAuthAuthorizationDetails",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1471,
+ "target": 1472,
"name": "OAuthRedirect",
"package": "@supabase/auth-js"
}
@@ -20619,7 +20619,7 @@
}
},
{
- "id": 1475,
+ "id": 1476,
"name": "AuthOAuthConsentResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20635,18 +20635,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1843,
+ "line": 1852,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1843"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1852"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1471,
+ "target": 1472,
"name": "OAuthRedirect",
"package": "@supabase/auth-js"
}
@@ -20656,7 +20656,7 @@
}
},
{
- "id": 1481,
+ "id": 1482,
"name": "AuthOAuthGrantsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20672,20 +20672,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1862,
+ "line": 1871,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1862"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1871"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "array",
"elementType": {
"type": "reference",
- "target": 1476,
+ "target": 1477,
"name": "OAuthGrant",
"package": "@supabase/auth-js"
}
@@ -20696,7 +20696,7 @@
}
},
{
- "id": 1482,
+ "id": 1483,
"name": "AuthOAuthRevokeGrantResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20712,19 +20712,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1868,
+ "line": 1877,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1868"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1877"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1483,
+ "id": 1484,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20732,9 +20732,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1868,
+ "line": 1877,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1868"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1877"
}
]
}
@@ -20745,7 +20745,7 @@
}
},
{
- "id": 793,
+ "id": 794,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20766,26 +20766,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 236,
+ "line": 245,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L245"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 794,
+ "id": 795,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 797,
+ "id": 798,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -20795,9 +20795,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 239,
+ "line": 248,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L248"
}
],
"type": {
@@ -20815,7 +20815,7 @@
}
},
{
- "id": 796,
+ "id": 797,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20823,9 +20823,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 238,
+ "line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L247"
}
],
"type": {
@@ -20834,7 +20834,7 @@
}
},
{
- "id": 795,
+ "id": 796,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20842,9 +20842,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 237,
+ "line": 246,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L246"
}
],
"type": {
@@ -20856,15 +20856,15 @@
"groups": [
{
"title": "Properties",
- "children": [797, 796, 795]
+ "children": [798, 797, 796]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 236,
+ "line": 245,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L245"
}
]
}
@@ -20875,7 +20875,7 @@
}
},
{
- "id": 784,
+ "id": 785,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20883,26 +20883,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 220,
+ "line": 229,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L229"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 785,
+ "id": 786,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 787,
+ "id": 788,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20910,9 +20910,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 222,
+ "line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L231"
}
],
"type": {
@@ -20920,7 +20920,7 @@
"types": [
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -20932,7 +20932,7 @@
}
},
{
- "id": 786,
+ "id": 787,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20940,9 +20940,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 221,
+ "line": 230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L230"
}
],
"type": {
@@ -20950,7 +20950,7 @@
"types": [
{
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -20965,15 +20965,15 @@
"groups": [
{
"title": "Properties",
- "children": [787, 786]
+ "children": [788, 787]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 220,
+ "line": 229,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L229"
}
]
}
@@ -20984,7 +20984,7 @@
}
},
{
- "id": 788,
+ "id": 789,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -20992,26 +20992,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 225,
+ "line": 234,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L234"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 789,
+ "id": 790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 791,
+ "id": 792,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -21019,9 +21019,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 227,
+ "line": 236,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L236"
}
],
"type": {
@@ -21029,7 +21029,7 @@
"types": [
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -21041,7 +21041,7 @@
}
},
{
- "id": 790,
+ "id": 791,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -21049,9 +21049,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 226,
+ "line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L235"
}
],
"type": {
@@ -21059,7 +21059,7 @@
"types": [
{
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -21071,7 +21071,7 @@
}
},
{
- "id": 792,
+ "id": 793,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -21081,9 +21081,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 228,
+ "line": 237,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L237"
}
],
"type": {
@@ -21091,7 +21091,7 @@
"types": [
{
"type": "reference",
- "target": 758,
+ "target": 759,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -21106,15 +21106,15 @@
"groups": [
{
"title": "Properties",
- "children": [791, 790, 792]
+ "children": [792, 791, 793]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 225,
+ "line": 234,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L234"
}
]
}
@@ -21125,7 +21125,7 @@
}
},
{
- "id": 798,
+ "id": 799,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -21133,26 +21133,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 242,
+ "line": 251,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L251"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 799,
+ "id": 800,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 801,
+ "id": 802,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -21160,20 +21160,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 244,
+ "line": 253,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L253"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 800,
+ "id": 801,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -21181,14 +21181,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 243,
+ "line": 252,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L252"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -21197,15 +21197,15 @@
"groups": [
{
"title": "Properties",
- "children": [801, 800]
+ "children": [802, 801]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 242,
+ "line": 251,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L251"
}
]
}
@@ -21216,7 +21216,7 @@
}
},
{
- "id": 802,
+ "id": 803,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -21224,26 +21224,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 247,
+ "line": 256,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L256"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 803,
+ "id": 804,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 805,
+ "id": 806,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -21251,20 +21251,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 249,
+ "line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L258"
}
],
"type": {
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 804,
+ "id": 805,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -21272,20 +21272,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 248,
+ "line": 257,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L257"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
},
{
- "id": 806,
+ "id": 807,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -21295,14 +21295,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 250,
+ "line": 259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L259"
}
],
"type": {
"type": "reference",
- "target": 758,
+ "target": 759,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -21311,15 +21311,15 @@
"groups": [
{
"title": "Properties",
- "children": [805, 804, 806]
+ "children": [806, 805, 807]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 247,
+ "line": 256,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L256"
}
]
}
@@ -21330,7 +21330,7 @@
}
},
{
- "id": 1319,
+ "id": 1320,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -21338,18 +21338,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1398,
+ "line": 1407,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1398"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1407"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 826,
+ "target": 827,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -21359,7 +21359,7 @@
}
},
{
- "id": 1404,
+ "id": 1405,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -21375,22 +21375,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1644,
+ "line": 1653,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1644"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1653"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1405,
+ "id": 1406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1406,
+ "id": 1407,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -21406,9 +21406,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1646,
+ "line": 1655,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1646"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1655"
}
],
"type": {
@@ -21417,7 +21417,7 @@
}
},
{
- "id": 1407,
+ "id": 1408,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -21435,9 +21435,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1648,
+ "line": 1657,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1648"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1657"
}
],
"type": {
@@ -21446,7 +21446,7 @@
}
},
{
- "id": 1409,
+ "id": 1410,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -21464,23 +21464,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1652,
+ "line": 1661,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1384,
+ "target": 1385,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1408,
+ "id": 1409,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -21496,9 +21496,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1650,
+ "line": 1659,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1659"
}
],
"type": {
@@ -21510,7 +21510,7 @@
}
},
{
- "id": 1410,
+ "id": 1411,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -21528,23 +21528,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1654,
+ "line": 1663,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1654"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1663"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1385,
+ "target": 1386,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1411,
+ "id": 1412,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -21562,9 +21562,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1656,
+ "line": 1665,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1665"
}
],
"type": {
@@ -21576,22 +21576,22 @@
"groups": [
{
"title": "Properties",
- "children": [1406, 1407, 1409, 1408, 1410, 1411]
+ "children": [1407, 1408, 1410, 1409, 1411, 1412]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1644,
+ "line": 1653,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1644"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1653"
}
]
}
}
},
{
- "id": 1060,
+ "id": 1061,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -21599,9 +21599,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 824,
+ "line": 833,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L824"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L833"
}
],
"type": {
@@ -21635,7 +21635,7 @@
}
},
{
- "id": 1020,
+ "id": 1021,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -21643,9 +21643,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 735,
+ "line": 744,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L744"
}
],
"type": {
@@ -21659,7 +21659,7 @@
}
},
{
- "id": 1021,
+ "id": 1022,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -21667,9 +21667,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 737,
+ "line": 746,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L737"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L746"
}
],
"type": {
@@ -21678,14 +21678,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1022,
+ "id": 1023,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1023,
+ "id": 1024,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -21693,9 +21693,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 739,
+ "line": 748,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L739"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L748"
}
],
"type": {
@@ -21704,7 +21704,7 @@
}
},
{
- "id": 1026,
+ "id": 1027,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -21714,22 +21714,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 747,
+ "line": 756,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L747"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L756"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1027,
+ "id": 1028,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1029,
+ "id": 1030,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -21747,9 +21747,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 752,
+ "line": 761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L752"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L761"
}
],
"type": {
@@ -21758,7 +21758,7 @@
}
},
{
- "id": 1030,
+ "id": 1031,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -21768,9 +21768,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 754,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L754"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L763"
}
],
"type": {
@@ -21827,7 +21827,7 @@
}
},
{
- "id": 1028,
+ "id": 1029,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -21845,9 +21845,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 749,
+ "line": 758,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L749"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L758"
}
],
"type": {
@@ -21859,22 +21859,22 @@
"groups": [
{
"title": "Properties",
- "children": [1029, 1030, 1028]
+ "children": [1030, 1031, 1029]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 747,
+ "line": 756,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L747"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L756"
}
]
}
}
},
{
- "id": 1025,
+ "id": 1026,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -21892,9 +21892,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 745,
+ "line": 754,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L745"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L754"
}
],
"type": {
@@ -21903,7 +21903,7 @@
}
},
{
- "id": 1024,
+ "id": 1025,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -21929,14 +21929,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 742,
+ "line": 751,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L751"
}
],
"type": {
"type": "reference",
- "target": 1020,
+ "target": 1021,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -21945,15 +21945,15 @@
"groups": [
{
"title": "Properties",
- "children": [1023, 1026, 1025, 1024]
+ "children": [1024, 1027, 1026, 1025]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 738,
+ "line": 747,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L738"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L747"
}
]
}
@@ -21961,14 +21961,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1031,
+ "id": 1032,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1032,
+ "id": 1033,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -21976,9 +21976,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 760,
+ "line": 769,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L760"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L769"
}
],
"type": {
@@ -21987,7 +21987,7 @@
}
},
{
- "id": 1033,
+ "id": 1034,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -22027,9 +22027,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 763,
+ "line": 772,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L763"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L772"
}
],
"type": {
@@ -22038,7 +22038,7 @@
}
},
{
- "id": 1035,
+ "id": 1036,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22048,22 +22048,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 768,
+ "line": 777,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L768"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L777"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1036,
+ "id": 1037,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1037,
+ "id": 1038,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -22081,9 +22081,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 770,
+ "line": 779,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L770"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L779"
}
],
"type": {
@@ -22095,22 +22095,22 @@
"groups": [
{
"title": "Properties",
- "children": [1037]
+ "children": [1038]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 768,
+ "line": 777,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L768"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L777"
}
]
}
}
},
{
- "id": 1034,
+ "id": 1035,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -22126,9 +22126,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 766,
+ "line": 775,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L766"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L775"
}
],
"type": {
@@ -22145,15 +22145,15 @@
"groups": [
{
"title": "Properties",
- "children": [1032, 1033, 1035, 1034]
+ "children": [1033, 1034, 1036, 1035]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 759,
+ "line": 768,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L768"
}
]
}
@@ -22162,7 +22162,7 @@
}
},
{
- "id": 853,
+ "id": 854,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -22186,7 +22186,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1176
+ "target": 1177
},
{
"kind": "text",
@@ -22200,7 +22200,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1287
+ "target": 1288
},
{
"kind": "text",
@@ -22226,33 +22226,33 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 392,
+ "line": 401,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L401"
}
],
"typeParameters": [
{
- "id": 862,
+ "id": 863,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 852,
+ "target": 853,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 852,
+ "target": 853,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 863,
+ "id": 864,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -22291,14 +22291,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 854,
+ "id": 855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 859,
+ "id": 860,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -22306,9 +22306,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 412,
+ "line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L412"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L421"
}
],
"type": {
@@ -22317,7 +22317,7 @@
}
},
{
- "id": 857,
+ "id": 858,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -22349,21 +22349,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 405,
+ "line": 414,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L405"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L414"
}
],
"type": {
"type": "reference",
- "target": 862,
+ "target": 863,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 856,
+ "id": 857,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -22381,9 +22381,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 400,
+ "line": 409,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L409"
}
],
"type": {
@@ -22392,7 +22392,7 @@
}
},
{
- "id": 855,
+ "id": 856,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -22408,9 +22408,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 397,
+ "line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L406"
}
],
"type": {
@@ -22419,7 +22419,7 @@
}
},
{
- "id": 861,
+ "id": 862,
"name": "last_challenged_at",
"variant": "declaration",
"kind": 1024,
@@ -22429,9 +22429,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 414,
+ "line": 423,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L423"
}
],
"type": {
@@ -22440,7 +22440,7 @@
}
},
{
- "id": 858,
+ "id": 859,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -22484,21 +22484,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 410,
+ "line": 419,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L419"
}
],
"type": {
"type": "reference",
- "target": 863,
+ "target": 864,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 860,
+ "id": 861,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -22506,9 +22506,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 413,
+ "line": 422,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L413"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L422"
}
],
"type": {
@@ -22520,22 +22520,22 @@
"groups": [
{
"title": "Properties",
- "children": [859, 857, 856, 855, 861, 858, 860]
+ "children": [860, 858, 857, 856, 862, 859, 861]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 395,
+ "line": 404,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L395"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L404"
}
]
}
}
},
{
- "id": 852,
+ "id": 853,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -22567,9 +22567,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 376,
+ "line": 385,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L376"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L385"
}
],
"type": {
@@ -22594,7 +22594,7 @@
}
},
{
- "id": 1106,
+ "id": 1107,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22602,22 +22602,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 903,
+ "line": 912,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1107,
+ "id": 1108,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1109,
+ "id": 1110,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -22633,9 +22633,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 906,
+ "line": 915,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L906"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L915"
}
],
"type": {
@@ -22644,7 +22644,7 @@
}
},
{
- "id": 1110,
+ "id": 1111,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -22660,9 +22660,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 910,
+ "line": 919,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L919"
}
],
"type": {
@@ -22671,7 +22671,7 @@
}
},
{
- "id": 1111,
+ "id": 1112,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22681,9 +22681,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 911,
+ "line": 920,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L911"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L920"
}
],
"type": {
@@ -22695,7 +22695,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -22709,7 +22709,7 @@
}
},
{
- "id": 1108,
+ "id": 1109,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22717,9 +22717,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 904,
+ "line": 913,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L904"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L913"
}
],
"type": {
@@ -22740,22 +22740,22 @@
"groups": [
{
"title": "Properties",
- "children": [1109, 1110, 1111, 1108]
+ "children": [1110, 1111, 1112, 1109]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 903,
+ "line": 912,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L912"
}
]
}
}
},
{
- "id": 1096,
+ "id": 1097,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22763,22 +22763,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 889,
+ "line": 898,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L889"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L898"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1097,
+ "id": 1098,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1099,
+ "id": 1100,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -22794,9 +22794,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 892,
+ "line": 901,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L892"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L901"
}
],
"type": {
@@ -22805,7 +22805,7 @@
}
},
{
- "id": 1100,
+ "id": 1101,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22815,9 +22815,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 893,
+ "line": 902,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L893"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L902"
}
],
"type": {
@@ -22829,7 +22829,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -22852,7 +22852,7 @@
}
},
{
- "id": 1098,
+ "id": 1099,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22860,9 +22860,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 890,
+ "line": 899,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L890"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L899"
}
],
"type": {
@@ -22883,22 +22883,22 @@
"groups": [
{
"title": "Properties",
- "children": [1099, 1100, 1098]
+ "children": [1100, 1101, 1099]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 889,
+ "line": 898,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L889"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L898"
}
]
}
}
},
{
- "id": 1115,
+ "id": 1116,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22906,9 +22906,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 925,
+ "line": 934,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L925"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L934"
}
],
"type": {
@@ -22916,25 +22916,25 @@
"types": [
{
"type": "reference",
- "target": 1090,
+ "target": 1091,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1096,
+ "target": 1097,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1101,
+ "target": 1102,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1106,
+ "target": 1107,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -22942,7 +22942,7 @@
}
},
{
- "id": 1120,
+ "id": 1121,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -22958,22 +22958,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 937,
+ "line": 946,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L937"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L946"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1121,
+ "id": 1122,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1122,
+ "id": 1123,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -22989,9 +22989,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 942,
+ "line": 951,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L942"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L951"
}
],
"type": {
@@ -23000,7 +23000,7 @@
}
},
{
- "id": 1123,
+ "id": 1124,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -23016,9 +23016,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 947,
+ "line": 956,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L947"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L956"
}
],
"type": {
@@ -23027,7 +23027,7 @@
}
},
{
- "id": 1124,
+ "id": 1125,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -23043,9 +23043,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 951,
+ "line": 960,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L951"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L960"
}
],
"type": {
@@ -23054,7 +23054,7 @@
}
},
{
- "id": 1125,
+ "id": 1126,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -23070,9 +23070,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 953,
+ "line": 962,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L953"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L962"
}
],
"type": {
@@ -23081,7 +23081,7 @@
}
},
{
- "id": 1126,
+ "id": 1127,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -23097,14 +23097,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 955,
+ "line": 964,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L955"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L964"
}
],
"type": {
"type": "reference",
- "target": 1127,
+ "target": 1128,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -23113,22 +23113,22 @@
"groups": [
{
"title": "Properties",
- "children": [1122, 1123, 1124, 1125, 1126]
+ "children": [1123, 1124, 1125, 1126, 1127]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 937,
+ "line": 946,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L937"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L946"
}
]
}
}
},
{
- "id": 1116,
+ "id": 1117,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23136,26 +23136,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 931,
+ "line": 940,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L940"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1117,
+ "id": 1118,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1118,
+ "id": 1119,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -23163,20 +23163,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 932,
+ "line": 941,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L932"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L941"
}
],
"type": {
"type": "reference",
- "target": 1120,
+ "target": 1121,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1119,
+ "id": 1120,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -23184,14 +23184,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 933,
+ "line": 942,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L933"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L942"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -23200,15 +23200,15 @@
"groups": [
{
"title": "Properties",
- "children": [1118, 1119]
+ "children": [1119, 1120]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 931,
+ "line": 940,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L931"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L940"
}
]
}
@@ -23219,7 +23219,7 @@
}
},
{
- "id": 1127,
+ "id": 1128,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -23227,9 +23227,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 958,
+ "line": 967,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L967"
}
],
"type": {
@@ -23263,7 +23263,7 @@
}
},
{
- "id": 1101,
+ "id": 1102,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -23271,22 +23271,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 896,
+ "line": 905,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L896"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L905"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1102,
+ "id": 1103,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1104,
+ "id": 1105,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -23302,9 +23302,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 899,
+ "line": 908,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L899"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L908"
}
],
"type": {
@@ -23313,7 +23313,7 @@
}
},
{
- "id": 1105,
+ "id": 1106,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -23323,9 +23323,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 900,
+ "line": 909,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L900"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L909"
}
],
"type": {
@@ -23337,7 +23337,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -23351,7 +23351,7 @@
}
},
{
- "id": 1103,
+ "id": 1104,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -23359,9 +23359,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 897,
+ "line": 906,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L897"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L906"
}
],
"type": {
@@ -23373,22 +23373,22 @@
"groups": [
{
"title": "Properties",
- "children": [1104, 1105, 1103]
+ "children": [1105, 1106, 1104]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 896,
+ "line": 905,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L896"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L905"
}
]
}
}
},
{
- "id": 1090,
+ "id": 1091,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -23396,22 +23396,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 882,
+ "line": 891,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L882"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L891"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1091,
+ "id": 1092,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1093,
+ "id": 1094,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -23419,9 +23419,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 884,
+ "line": 893,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L884"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L893"
}
],
"type": {
@@ -23430,7 +23430,7 @@
}
},
{
- "id": 1095,
+ "id": 1096,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -23440,9 +23440,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 886,
+ "line": 895,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L886"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L895"
}
],
"type": {
@@ -23454,7 +23454,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -23477,7 +23477,7 @@
}
},
{
- "id": 1094,
+ "id": 1095,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -23485,9 +23485,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 885,
+ "line": 894,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L885"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L894"
}
],
"type": {
@@ -23496,7 +23496,7 @@
}
},
{
- "id": 1092,
+ "id": 1093,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -23504,9 +23504,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 883,
+ "line": 892,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L883"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L892"
}
],
"type": {
@@ -23518,15 +23518,15 @@
"groups": [
{
"title": "Properties",
- "children": [1093, 1095, 1094, 1092]
+ "children": [1094, 1096, 1095, 1093]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 882,
+ "line": 891,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L882"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L891"
}
]
}
@@ -23543,7 +23543,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 73,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L73"
}
],
"type": {
@@ -23568,7 +23568,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L102"
}
],
"type": {
@@ -23589,7 +23589,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L120"
}
],
"type": {
@@ -23612,7 +23612,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L120"
}
],
"signatures": [
@@ -23694,7 +23694,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"type": {
@@ -23717,7 +23717,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"signatures": [
@@ -23763,7 +23763,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"indexSignatures": [
@@ -23778,7 +23778,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 100,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L100"
}
],
"parameters": [
@@ -23828,7 +23828,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 116,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L116"
}
],
"type": {
@@ -23854,12 +23854,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L118"
}
],
"type": {
"type": "reference",
- "target": 964,
+ "target": 965,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
@@ -23886,7 +23886,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L131"
}
],
"type": {
@@ -23907,7 +23907,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L77"
}
],
"type": {
@@ -23923,7 +23923,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 77,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L77"
}
],
"indexSignatures": [
@@ -23938,7 +23938,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L77"
}
],
"parameters": [
@@ -23985,7 +23985,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 126,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L126"
}
],
"type": {
@@ -24052,7 +24052,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 172,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L172"
}
],
"type": {
@@ -24073,7 +24073,47 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L104"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 757,
+ "name": "skipAutoInitialize",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If true, skips automatic initialization in constructor. Useful for SSR\ncontexts where initialization timing must be controlled to prevent race\nconditions with HTTP response generation."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@default",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```ts\nfalse\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 181,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -24094,12 +24134,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L106"
}
],
"type": {
"type": "reference",
- "target": 1313,
+ "target": 1314,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -24117,7 +24157,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L79"
}
],
"type": {
@@ -24146,7 +24186,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L136"
}
],
"type": {
@@ -24167,7 +24207,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L75"
}
],
"type": {
@@ -24237,12 +24277,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L114"
}
],
"type": {
"type": "reference",
- "target": 1313,
+ "target": 1314,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -24252,7 +24292,7 @@
{
"title": "Properties",
"children": [
- 742, 748, 734, 746, 747, 754, 729, 753, 756, 743, 744, 733, 755, 728, 745
+ 742, 748, 734, 746, 747, 754, 729, 753, 756, 743, 757, 744, 733, 755, 728, 745
]
}
],
@@ -24261,14 +24301,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 73,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L73"
}
]
}
}
},
{
- "id": 1316,
+ "id": 1317,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -24276,22 +24316,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1396,
+ "line": 1405,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1405"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1317,
+ "id": 1318,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1318,
+ "id": 1319,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -24299,9 +24339,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1396,
+ "line": 1405,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1405"
}
],
"type": {
@@ -24309,7 +24349,7 @@
"types": [
{
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -24324,22 +24364,22 @@
"groups": [
{
"title": "Properties",
- "children": [1318]
+ "children": [1319]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1396,
+ "line": 1405,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1405"
}
]
}
}
},
{
- "id": 1340,
+ "id": 1341,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -24347,22 +24387,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1519,
+ "line": 1528,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1519"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1528"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1341,
+ "id": 1342,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1342,
+ "id": 1343,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -24370,9 +24410,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1520,
+ "line": 1529,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1520"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1529"
}
],
"type": {
@@ -24394,7 +24434,7 @@
}
},
{
- "id": 1343,
+ "id": 1344,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -24402,9 +24442,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1521,
+ "line": 1530,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1530"
}
],
"type": {
@@ -24413,7 +24453,7 @@
}
},
{
- "id": 1344,
+ "id": 1345,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -24421,9 +24461,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1522,
+ "line": 1531,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1531"
}
],
"type": {
@@ -24435,15 +24475,15 @@
"groups": [
{
"title": "Properties",
- "children": [1342, 1343, 1344]
+ "children": [1343, 1344, 1345]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1519,
+ "line": 1528,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1519"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1528"
}
]
}
@@ -24477,7 +24517,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 71,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L71"
}
],
"type": {
@@ -24493,7 +24533,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 71,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L71"
}
],
"signatures": [
@@ -24586,7 +24626,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 71,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L71"
}
],
"signatures": [
@@ -24644,7 +24684,7 @@
}
},
{
- "id": 1146,
+ "id": 1147,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -24652,9 +24692,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1077,
+ "line": 1086,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1077"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1086"
}
],
"type": {
@@ -24668,7 +24708,7 @@
}
},
{
- "id": 1145,
+ "id": 1146,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -24676,9 +24716,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1064,
+ "line": 1073,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1064"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1073"
}
],
"type": {
@@ -24686,19 +24726,19 @@
"types": [
{
"type": "reference",
- "target": 1142,
+ "target": 1143,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1143,
+ "target": 1144,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1144,
+ "target": 1145,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -24706,7 +24746,7 @@
}
},
{
- "id": 1143,
+ "id": 1144,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -24714,14 +24754,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1041,
+ "line": 1050,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1041"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1050"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -24752,7 +24792,7 @@
}
},
{
- "id": 1142,
+ "id": 1143,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -24760,14 +24800,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1034,
+ "line": 1043,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1034"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1043"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "reference",
@@ -24784,7 +24824,7 @@
}
},
{
- "id": 1144,
+ "id": 1145,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -24813,14 +24853,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1060,
+ "line": 1069,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1060"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1069"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -24851,7 +24891,7 @@
}
},
{
- "id": 1128,
+ "id": 1129,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -24859,9 +24899,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 966,
+ "line": 975,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L966"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L975"
}
],
"type": {
@@ -24869,19 +24909,19 @@
"types": [
{
"type": "reference",
- "target": 1334,
+ "target": 1335,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1335,
+ "target": 1336,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1336,
+ "target": 1337,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -24889,7 +24929,7 @@
}
},
{
- "id": 1335,
+ "id": 1336,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -24897,14 +24937,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1446,
+ "line": 1455,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1446"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1455"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -24941,7 +24981,7 @@
}
},
{
- "id": 1334,
+ "id": 1335,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -24949,14 +24989,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1440,
+ "line": 1449,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1440"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1449"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -24993,7 +25033,7 @@
}
},
{
- "id": 1336,
+ "id": 1337,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -25022,14 +25062,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1459,
+ "line": 1468,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1459"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1468"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -25066,7 +25106,7 @@
}
},
{
- "id": 1141,
+ "id": 1142,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -25074,9 +25114,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1032,
+ "line": 1041,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1032"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1041"
}
],
"type": {
@@ -25101,7 +25141,7 @@
}
},
{
- "id": 1129,
+ "id": 1130,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -25109,22 +25149,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 968,
+ "line": 977,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L968"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L977"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1130,
+ "id": 1131,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1131,
+ "id": 1132,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -25140,9 +25180,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 970,
+ "line": 979,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L970"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L979"
}
],
"type": {
@@ -25154,22 +25194,22 @@
"groups": [
{
"title": "Properties",
- "children": [1131]
+ "children": [1132]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 968,
+ "line": 977,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L968"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L977"
}
]
}
}
},
{
- "id": 1140,
+ "id": 1141,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -25177,9 +25217,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1024,
+ "line": 1033,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1024"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1033"
}
],
"type": {
@@ -25187,19 +25227,19 @@
"types": [
{
"type": "reference",
- "target": 1132,
+ "target": 1133,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1138,
+ "target": 1139,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -25207,7 +25247,7 @@
}
},
{
- "id": 1133,
+ "id": 1134,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -25215,14 +25255,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 989,
+ "line": 998,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L989"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L998"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -25253,7 +25293,7 @@
}
},
{
- "id": 1132,
+ "id": 1133,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -25261,14 +25301,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 985,
+ "line": 994,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L985"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L994"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -25299,7 +25339,7 @@
}
},
{
- "id": 1134,
+ "id": 1135,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -25315,14 +25355,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1011,
+ "line": 1020,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1011"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1020"
}
],
"typeParameters": [
{
- "id": 1137,
+ "id": 1138,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -25366,14 +25406,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1135,
+ "id": 1136,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1136,
+ "id": 1137,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -25381,9 +25421,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1012,
+ "line": 1021,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1012"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1021"
}
],
"type": {
@@ -25407,7 +25447,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1137,
+ "target": 1138,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -25423,22 +25463,22 @@
"groups": [
{
"title": "Properties",
- "children": [1136]
+ "children": [1137]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1011,
+ "line": 1020,
"character": 98,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1011"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1020"
}
]
}
}
},
{
- "id": 1138,
+ "id": 1139,
"name": "MFAVerifyWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -25467,14 +25507,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1021,
+ "line": 1030,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1021"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1030"
}
],
"typeParameters": [
{
- "id": 1139,
+ "id": 1140,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -25517,7 +25557,7 @@
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -25533,11 +25573,11 @@
},
{
"type": "reference",
- "target": 1134,
+ "target": 1135,
"typeArguments": [
{
"type": "reference",
- "target": 1139,
+ "target": 1140,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -25554,7 +25594,7 @@
}
},
{
- "id": 1059,
+ "id": 1060,
"name": "MobileOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -25562,9 +25602,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 823,
+ "line": 832,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L823"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L832"
}
],
"type": {
@@ -25582,7 +25622,7 @@
}
},
{
- "id": 1455,
+ "id": 1456,
"name": "OAuthAuthorizationClient",
"variant": "declaration",
"kind": 2097152,
@@ -25598,22 +25638,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1764,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1764"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1456,
+ "id": 1457,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1457,
+ "id": 1458,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -25629,9 +25669,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1757,
+ "line": 1766,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1766"
}
],
"type": {
@@ -25640,7 +25680,7 @@
}
},
{
- "id": 1460,
+ "id": 1461,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -25656,9 +25696,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1763,
+ "line": 1772,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1763"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1772"
}
],
"type": {
@@ -25667,7 +25707,7 @@
}
},
{
- "id": 1458,
+ "id": 1459,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -25683,9 +25723,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1759,
+ "line": 1768,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1759"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1768"
}
],
"type": {
@@ -25694,7 +25734,7 @@
}
},
{
- "id": 1459,
+ "id": 1460,
"name": "uri",
"variant": "declaration",
"kind": 1024,
@@ -25710,9 +25750,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1761,
+ "line": 1770,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1761"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1770"
}
],
"type": {
@@ -25724,22 +25764,22 @@
"groups": [
{
"title": "Properties",
- "children": [1457, 1460, 1458, 1459]
+ "children": [1458, 1461, 1459, 1460]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1764,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1764"
}
]
}
}
},
{
- "id": 1461,
+ "id": 1462,
"name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
@@ -25771,22 +25811,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1777,
+ "line": 1786,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1786"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1462,
+ "id": 1463,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1463,
+ "id": 1464,
"name": "authorization_id",
"variant": "declaration",
"kind": 1024,
@@ -25802,9 +25842,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1779,
+ "line": 1788,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1779"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1788"
}
],
"type": {
@@ -25813,7 +25853,7 @@
}
},
{
- "id": 1465,
+ "id": 1466,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -25829,20 +25869,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1783,
+ "line": 1792,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1783"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1792"
}
],
"type": {
"type": "reference",
- "target": 1455,
+ "target": 1456,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1464,
+ "id": 1465,
"name": "redirect_uri",
"variant": "declaration",
"kind": 1024,
@@ -25858,9 +25898,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1781,
+ "line": 1790,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1781"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1790"
}
],
"type": {
@@ -25869,7 +25909,7 @@
}
},
{
- "id": 1470,
+ "id": 1471,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -25885,9 +25925,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1792,
+ "line": 1801,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1792"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1801"
}
],
"type": {
@@ -25896,7 +25936,7 @@
}
},
{
- "id": 1466,
+ "id": 1467,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -25912,22 +25952,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1785,
+ "line": 1794,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1794"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1467,
+ "id": 1468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1469,
+ "id": 1470,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -25943,9 +25983,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1789,
+ "line": 1798,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1789"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1798"
}
],
"type": {
@@ -25954,7 +25994,7 @@
}
},
{
- "id": 1468,
+ "id": 1469,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -25970,9 +26010,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1787,
+ "line": 1796,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1787"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1796"
}
],
"type": {
@@ -25984,15 +26024,15 @@
"groups": [
{
"title": "Properties",
- "children": [1469, 1468]
+ "children": [1470, 1469]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1785,
+ "line": 1794,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1794"
}
]
}
@@ -26002,22 +26042,22 @@
"groups": [
{
"title": "Properties",
- "children": [1463, 1465, 1464, 1470, 1466]
+ "children": [1464, 1466, 1465, 1471, 1467]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1777,
+ "line": 1786,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1777"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1786"
}
]
}
}
},
{
- "id": 1388,
+ "id": 1389,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -26033,22 +26073,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1609,
+ "line": 1618,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1609"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1618"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1389,
+ "id": 1390,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1390,
+ "id": 1391,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -26064,9 +26104,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1611,
+ "line": 1620,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1611"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1620"
}
],
"type": {
@@ -26075,7 +26115,7 @@
}
},
{
- "id": 1391,
+ "id": 1392,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -26091,9 +26131,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1613,
+ "line": 1622,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1613"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1622"
}
],
"type": {
@@ -26102,7 +26142,7 @@
}
},
{
- "id": 1392,
+ "id": 1393,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -26120,9 +26160,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1615,
+ "line": 1624,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1615"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1624"
}
],
"type": {
@@ -26131,7 +26171,7 @@
}
},
{
- "id": 1393,
+ "id": 1394,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -26147,20 +26187,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1617,
+ "line": 1626,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1617"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1626"
}
],
"type": {
"type": "reference",
- "target": 1386,
+ "target": 1387,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1396,
+ "id": 1397,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -26178,9 +26218,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1623,
+ "line": 1632,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1623"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1632"
}
],
"type": {
@@ -26189,7 +26229,7 @@
}
},
{
- "id": 1402,
+ "id": 1403,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -26205,9 +26245,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1635,
+ "line": 1644,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1635"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1644"
}
],
"type": {
@@ -26216,7 +26256,7 @@
}
},
{
- "id": 1399,
+ "id": 1400,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -26232,23 +26272,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1629,
+ "line": 1638,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1629"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1638"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1384,
+ "target": 1385,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1397,
+ "id": 1398,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -26266,9 +26306,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1625,
+ "line": 1634,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1625"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1634"
}
],
"type": {
@@ -26277,7 +26317,7 @@
}
},
{
- "id": 1398,
+ "id": 1399,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -26293,9 +26333,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1627,
+ "line": 1636,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1627"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1636"
}
],
"type": {
@@ -26307,7 +26347,7 @@
}
},
{
- "id": 1395,
+ "id": 1396,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -26323,20 +26363,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1621,
+ "line": 1630,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1621"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1630"
}
],
"type": {
"type": "reference",
- "target": 1387,
+ "target": 1388,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1400,
+ "id": 1401,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -26352,23 +26392,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1631,
+ "line": 1640,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1631"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1640"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1385,
+ "target": 1386,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1401,
+ "id": 1402,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -26386,9 +26426,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1633,
+ "line": 1642,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1633"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1642"
}
],
"type": {
@@ -26397,7 +26437,7 @@
}
},
{
- "id": 1394,
+ "id": 1395,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -26413,9 +26453,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1619,
+ "line": 1628,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1619"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1628"
}
],
"type": {
@@ -26424,7 +26464,7 @@
}
},
{
- "id": 1403,
+ "id": 1404,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -26440,9 +26480,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1637,
+ "line": 1646,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1637"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1646"
}
],
"type": {
@@ -26455,23 +26495,23 @@
{
"title": "Properties",
"children": [
- 1390, 1391, 1392, 1393, 1396, 1402, 1399, 1397, 1398, 1395, 1400, 1401, 1394, 1403
+ 1391, 1392, 1393, 1394, 1397, 1403, 1400, 1398, 1399, 1396, 1401, 1402, 1395, 1404
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1609,
+ "line": 1618,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1609"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1618"
}
]
}
}
},
{
- "id": 1384,
+ "id": 1385,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -26487,9 +26527,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1585,
+ "line": 1594,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1585"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1594"
}
],
"type": {
@@ -26507,7 +26547,7 @@
}
},
{
- "id": 1420,
+ "id": 1421,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -26523,9 +26563,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1687,
+ "line": 1696,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1687"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1696"
}
],
"type": {
@@ -26534,14 +26574,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1421,
+ "id": 1422,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1422,
+ "id": 1423,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26549,9 +26589,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
],
"type": {
@@ -26560,14 +26600,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1423,
+ "id": 1424,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1425,
+ "id": 1426,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -26575,9 +26615,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
],
"type": {
@@ -26586,7 +26626,7 @@
}
},
{
- "id": 1424,
+ "id": 1425,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -26594,16 +26634,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1388,
+ "target": 1389,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -26613,22 +26653,22 @@
"groups": [
{
"title": "Properties",
- "children": [1425, 1424]
+ "children": [1426, 1425]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1689,
+ "line": 1698,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1698"
}
]
}
},
{
"type": "reference",
- "target": 1320,
+ "target": 1321,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -26636,7 +26676,7 @@
}
},
{
- "id": 1426,
+ "id": 1427,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26644,9 +26684,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1690,
+ "line": 1699,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1690"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1699"
}
],
"type": {
@@ -26658,15 +26698,15 @@
"groups": [
{
"title": "Properties",
- "children": [1422, 1426]
+ "children": [1423, 1427]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1688,
+ "line": 1697,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1688"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1697"
}
]
}
@@ -26674,14 +26714,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1427,
+ "id": 1428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1428,
+ "id": 1429,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26689,22 +26729,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1693,
+ "line": 1702,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1702"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1429,
+ "id": 1430,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1430,
+ "id": 1431,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -26712,9 +26752,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1693,
+ "line": 1702,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1702"
}
],
"type": {
@@ -26725,22 +26765,22 @@
"groups": [
{
"title": "Properties",
- "children": [1430]
+ "children": [1431]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1693,
+ "line": 1702,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1702"
}
]
}
}
},
{
- "id": 1431,
+ "id": 1432,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26748,14 +26788,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1694,
+ "line": 1703,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1703"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -26764,15 +26804,15 @@
"groups": [
{
"title": "Properties",
- "children": [1428, 1431]
+ "children": [1429, 1432]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1692,
+ "line": 1701,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1692"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1701"
}
]
}
@@ -26781,7 +26821,7 @@
}
},
{
- "id": 1387,
+ "id": 1388,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -26797,9 +26837,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1603,
+ "line": 1612,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1603"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1612"
}
],
"type": {
@@ -26817,7 +26857,7 @@
}
},
{
- "id": 1419,
+ "id": 1420,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -26833,18 +26873,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1681,
+ "line": 1690,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1681"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1690"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reference",
- "target": 1388,
+ "target": 1389,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -26854,7 +26894,7 @@
}
},
{
- "id": 1385,
+ "id": 1386,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -26870,9 +26910,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1591,
+ "line": 1600,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1591"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1600"
}
],
"type": {
@@ -26881,7 +26921,7 @@
}
},
{
- "id": 1386,
+ "id": 1387,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -26897,9 +26937,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1597,
+ "line": 1606,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1597"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1606"
}
],
"type": {
@@ -26917,7 +26957,7 @@
}
},
{
- "id": 1476,
+ "id": 1477,
"name": "OAuthGrant",
"variant": "declaration",
"kind": 2097152,
@@ -26933,22 +26973,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1849,
+ "line": 1858,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1849"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1858"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1477,
+ "id": 1478,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1478,
+ "id": 1479,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -26964,20 +27004,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1851,
+ "line": 1860,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1851"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1860"
}
],
"type": {
"type": "reference",
- "target": 1455,
+ "target": 1456,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1480,
+ "id": 1481,
"name": "granted_at",
"variant": "declaration",
"kind": 1024,
@@ -26993,9 +27033,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1855,
+ "line": 1864,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1855"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1864"
}
],
"type": {
@@ -27004,7 +27044,7 @@
}
},
{
- "id": 1479,
+ "id": 1480,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -27020,9 +27060,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1853,
+ "line": 1862,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1853"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1862"
}
],
"type": {
@@ -27037,22 +27077,22 @@
"groups": [
{
"title": "Properties",
- "children": [1478, 1480, 1479]
+ "children": [1479, 1481, 1480]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1849,
+ "line": 1858,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1849"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1858"
}
]
}
}
},
{
- "id": 1471,
+ "id": 1472,
"name": "OAuthRedirect",
"variant": "declaration",
"kind": 2097152,
@@ -27076,22 +27116,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1808,
+ "line": 1817,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1808"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1817"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1472,
+ "id": 1473,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1473,
+ "id": 1474,
"name": "redirect_url",
"variant": "declaration",
"kind": 1024,
@@ -27107,9 +27147,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1810,
+ "line": 1819,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1810"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1819"
}
],
"type": {
@@ -27121,22 +27161,22 @@
"groups": [
{
"title": "Properties",
- "children": [1473]
+ "children": [1474]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1808,
+ "line": 1817,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1808"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1817"
}
]
}
}
},
{
- "id": 807,
+ "id": 808,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -27144,9 +27184,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 253,
+ "line": 262,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L262"
}
],
"type": {
@@ -27155,14 +27195,14 @@
{
"type": "reflection",
"declaration": {
- "id": 808,
+ "id": 809,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 809,
+ "id": 810,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -27170,22 +27210,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 255,
+ "line": 264,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L264"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 810,
+ "id": 811,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 811,
+ "id": 812,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -27193,9 +27233,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 256,
+ "line": 265,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L265"
}
],
"type": {
@@ -27206,7 +27246,7 @@
}
},
{
- "id": 812,
+ "id": 813,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -27214,9 +27254,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 257,
+ "line": 266,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L266"
}
],
"type": {
@@ -27228,22 +27268,22 @@
"groups": [
{
"title": "Properties",
- "children": [811, 812]
+ "children": [812, 813]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 255,
+ "line": 264,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L264"
}
]
}
}
},
{
- "id": 813,
+ "id": 814,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -27251,9 +27291,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 259,
+ "line": 268,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L259"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L268"
}
],
"type": {
@@ -27265,15 +27305,15 @@
"groups": [
{
"title": "Properties",
- "children": [809, 813]
+ "children": [810, 814]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 254,
+ "line": 263,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L263"
}
]
}
@@ -27281,14 +27321,14 @@
{
"type": "reflection",
"declaration": {
- "id": 814,
+ "id": 815,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 815,
+ "id": 816,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -27296,22 +27336,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 262,
+ "line": 271,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L271"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 816,
+ "id": 817,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 817,
+ "id": 818,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -27319,9 +27359,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 263,
+ "line": 272,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L272"
}
],
"type": {
@@ -27332,7 +27372,7 @@
}
},
{
- "id": 818,
+ "id": 819,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -27340,9 +27380,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 264,
+ "line": 273,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L273"
}
],
"type": {
@@ -27354,22 +27394,22 @@
"groups": [
{
"title": "Properties",
- "children": [817, 818]
+ "children": [818, 819]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 262,
+ "line": 271,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L271"
}
]
}
}
},
{
- "id": 819,
+ "id": 820,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -27377,14 +27417,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 266,
+ "line": 275,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L275"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -27393,15 +27433,15 @@
"groups": [
{
"title": "Properties",
- "children": [815, 819]
+ "children": [816, 820]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 261,
+ "line": 270,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L270"
}
]
}
@@ -27410,7 +27450,7 @@
}
},
{
- "id": 1327,
+ "id": 1328,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -27418,22 +27458,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1407,
+ "line": 1416,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1416"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1328,
+ "id": 1329,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1329,
+ "id": 1330,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -27451,9 +27491,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1409,
+ "line": 1418,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1409"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1418"
}
],
"type": {
@@ -27462,7 +27502,7 @@
}
},
{
- "id": 1330,
+ "id": 1331,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -27480,9 +27520,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1411,
+ "line": 1420,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1411"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1420"
}
],
"type": {
@@ -27494,22 +27534,22 @@
"groups": [
{
"title": "Properties",
- "children": [1329, 1330]
+ "children": [1330, 1331]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1407,
+ "line": 1416,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1416"
}
]
}
}
},
{
- "id": 1320,
+ "id": 1321,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -27517,22 +27557,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1400,
+ "line": 1409,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1409"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1321,
+ "id": 1322,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1323,
+ "id": 1324,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -27540,9 +27580,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1403,
+ "line": 1412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1403"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1412"
}
],
"type": {
@@ -27551,7 +27591,7 @@
}
},
{
- "id": 1322,
+ "id": 1323,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -27559,9 +27599,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1402,
+ "line": 1411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1402"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1411"
}
],
"type": {
@@ -27579,7 +27619,7 @@
}
},
{
- "id": 1324,
+ "id": 1325,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -27587,9 +27627,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1404,
+ "line": 1413,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1404"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1413"
}
],
"type": {
@@ -27601,20 +27641,20 @@
"groups": [
{
"title": "Properties",
- "children": [1323, 1322, 1324]
+ "children": [1324, 1323, 1325]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1400,
+ "line": 1409,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1409"
}
],
"indexSignatures": [
{
- "id": 1325,
+ "id": 1326,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -27622,14 +27662,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1401,
+ "line": 1410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1401"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1410"
}
],
"parameters": [
{
- "id": 1326,
+ "id": 1327,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -27650,7 +27690,7 @@
}
},
{
- "id": 762,
+ "id": 763,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -27666,14 +27706,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 187,
+ "line": 196,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L196"
}
],
"typeParameters": [
{
- "id": 763,
+ "id": 764,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -27684,7 +27724,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27700,7 +27740,7 @@
},
"trueType": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27713,7 +27753,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27733,7 +27773,7 @@
},
"objectType": {
"type": "reference",
- "target": 763,
+ "target": 764,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27761,7 +27801,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -27898,7 +27938,7 @@
}
},
{
- "id": 767,
+ "id": 768,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -27914,21 +27954,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 199,
+ "line": 208,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L208"
}
],
"typeParameters": [
{
- "id": 774,
+ "id": 775,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 775,
+ "id": 776,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -27944,7 +27984,7 @@
},
"default": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -27956,14 +27996,14 @@
{
"type": "reflection",
"declaration": {
- "id": 768,
+ "id": 769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 769,
+ "id": 770,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -27971,21 +28011,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 201,
+ "line": 210,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L210"
}
],
"type": {
"type": "reference",
- "target": 774,
+ "target": 775,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 770,
+ "id": 771,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -27993,9 +28033,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 202,
+ "line": 211,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
@@ -28007,15 +28047,15 @@
"groups": [
{
"title": "Properties",
- "children": [769, 770]
+ "children": [770, 771]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 200,
+ "line": 209,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L209"
}
]
}
@@ -28023,14 +28063,14 @@
{
"type": "reflection",
"declaration": {
- "id": 771,
+ "id": 772,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 772,
+ "id": 773,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28038,9 +28078,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 205,
+ "line": 214,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -28049,7 +28089,7 @@
}
},
{
- "id": 773,
+ "id": 774,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -28057,9 +28097,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 206,
+ "line": 215,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L215"
}
],
"type": {
@@ -28075,19 +28115,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 775,
+ "target": 776,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -28098,15 +28138,15 @@
"groups": [
{
"title": "Properties",
- "children": [772, 773]
+ "children": [773, 774]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 204,
+ "line": 213,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L213"
}
]
}
@@ -28115,7 +28155,7 @@
}
},
{
- "id": 776,
+ "id": 777,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -28136,14 +28176,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 213,
+ "line": 222,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L222"
}
],
"typeParameters": [
{
- "id": 783,
+ "id": 784,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -28156,14 +28196,14 @@
{
"type": "reflection",
"declaration": {
- "id": 777,
+ "id": 778,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 778,
+ "id": 779,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28171,21 +28211,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 214,
+ "line": 223,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L223"
}
],
"type": {
"type": "reference",
- "target": 783,
+ "target": 784,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 779,
+ "id": 780,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -28193,9 +28233,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 214,
+ "line": 223,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L223"
}
],
"type": {
@@ -28207,15 +28247,15 @@
"groups": [
{
"title": "Properties",
- "children": [778, 779]
+ "children": [779, 780]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 214,
+ "line": 223,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L223"
}
]
}
@@ -28223,14 +28263,14 @@
{
"type": "reflection",
"declaration": {
- "id": 780,
+ "id": 781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 781,
+ "id": 782,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28238,16 +28278,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 216,
+ "line": 225,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L225"
}
],
"type": {
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 783,
+ "target": 784,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -28264,7 +28304,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 783,
+ "target": 784,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -28282,7 +28322,7 @@
}
},
{
- "id": 782,
+ "id": 783,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -28290,14 +28330,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 217,
+ "line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L226"
}
],
"type": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -28306,15 +28346,15 @@
"groups": [
{
"title": "Properties",
- "children": [781, 782]
+ "children": [782, 783]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 215,
+ "line": 224,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L224"
}
]
}
@@ -28323,7 +28363,7 @@
}
},
{
- "id": 1345,
+ "id": 1346,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -28331,22 +28371,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1525,
+ "line": 1534,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1525"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1534"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1346,
+ "id": 1347,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1353,
+ "id": 1354,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -28354,20 +28394,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1532,
+ "line": 1541,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1532"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1541"
}
],
"type": {
"type": "reference",
- "target": 1169,
+ "target": 1170,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1349,
+ "id": 1350,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -28375,9 +28415,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1528,
+ "line": 1537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1528"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1537"
}
],
"type": {
@@ -28398,7 +28438,7 @@
}
},
{
- "id": 1350,
+ "id": 1351,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -28406,9 +28446,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1529,
+ "line": 1538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1529"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1538"
}
],
"type": {
@@ -28417,7 +28457,7 @@
}
},
{
- "id": 1351,
+ "id": 1352,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -28425,9 +28465,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1530,
+ "line": 1539,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1539"
}
],
"type": {
@@ -28436,7 +28476,7 @@
}
},
{
- "id": 1347,
+ "id": 1348,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -28444,9 +28484,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1526,
+ "line": 1535,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1526"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1535"
}
],
"type": {
@@ -28455,7 +28495,7 @@
}
},
{
- "id": 1352,
+ "id": 1353,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -28463,9 +28503,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1531,
+ "line": 1540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1531"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1540"
}
],
"type": {
@@ -28474,7 +28514,7 @@
}
},
{
- "id": 1354,
+ "id": 1355,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -28482,9 +28522,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1533,
+ "line": 1542,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1533"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1542"
}
],
"type": {
@@ -28493,7 +28533,7 @@
}
},
{
- "id": 1348,
+ "id": 1349,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -28501,9 +28541,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1527,
+ "line": 1536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1536"
}
],
"type": {
@@ -28515,15 +28555,15 @@
"groups": [
{
"title": "Properties",
- "children": [1353, 1349, 1350, 1351, 1347, 1352, 1354, 1348]
+ "children": [1354, 1350, 1351, 1352, 1348, 1353, 1355, 1349]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1525,
+ "line": 1534,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1525"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1534"
}
]
}
@@ -28531,13 +28571,13 @@
"extendedBy": [
{
"type": "reference",
- "target": 1355,
+ "target": 1356,
"name": "JwtPayload"
}
]
},
{
- "id": 1061,
+ "id": 1062,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -28545,9 +28585,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 826,
+ "line": 835,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L826"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L835"
}
],
"type": {
@@ -28556,14 +28596,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1062,
+ "id": 1063,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1064,
+ "id": 1065,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -28571,9 +28611,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 829,
+ "line": 838,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L829"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L838"
}
],
"type": {
@@ -28582,7 +28622,7 @@
}
},
{
- "id": 1065,
+ "id": 1066,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28592,22 +28632,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 830,
+ "line": 839,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L830"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L839"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1066,
+ "id": 1067,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1068,
+ "id": 1069,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -28625,9 +28665,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 834,
+ "line": 843,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L834"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L843"
}
],
"type": {
@@ -28636,7 +28676,7 @@
}
},
{
- "id": 1067,
+ "id": 1068,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -28654,9 +28694,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 832,
+ "line": 841,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L832"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L841"
}
],
"type": {
@@ -28668,22 +28708,22 @@
"groups": [
{
"title": "Properties",
- "children": [1068, 1067]
+ "children": [1069, 1068]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 830,
+ "line": 839,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L830"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L839"
}
]
}
}
},
{
- "id": 1063,
+ "id": 1064,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -28691,9 +28731,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 828,
+ "line": 837,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L828"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L837"
}
],
"type": {
@@ -28705,7 +28745,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1060,
+ "target": 1061,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -28731,15 +28771,15 @@
"groups": [
{
"title": "Properties",
- "children": [1064, 1065, 1063]
+ "children": [1065, 1066, 1064]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 827,
+ "line": 836,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L827"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L836"
}
]
}
@@ -28747,14 +28787,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1069,
+ "id": 1070,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1072,
+ "id": 1073,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28764,22 +28804,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 840,
+ "line": 849,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L840"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L849"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1073,
+ "id": 1074,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1074,
+ "id": 1075,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -28797,9 +28837,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 842,
+ "line": 851,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L842"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L851"
}
],
"type": {
@@ -28811,22 +28851,22 @@
"groups": [
{
"title": "Properties",
- "children": [1074]
+ "children": [1075]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 840,
+ "line": 849,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L840"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L849"
}
]
}
}
},
{
- "id": 1071,
+ "id": 1072,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -28834,9 +28874,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 839,
+ "line": 848,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L839"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L848"
}
],
"type": {
@@ -28845,7 +28885,7 @@
}
},
{
- "id": 1070,
+ "id": 1071,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -28853,9 +28893,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 838,
+ "line": 847,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L838"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L847"
}
],
"type": {
@@ -28867,7 +28907,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1059,
+ "target": 1060,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -28893,15 +28933,15 @@
"groups": [
{
"title": "Properties",
- "children": [1072, 1071, 1070]
+ "children": [1073, 1072, 1071]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 837,
+ "line": 846,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L837"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L846"
}
]
}
@@ -28910,7 +28950,7 @@
}
},
{
- "id": 928,
+ "id": 929,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -28918,22 +28958,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 586,
+ "line": 595,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L595"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 929,
+ "id": 930,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 930,
+ "id": 931,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28943,22 +28983,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 587,
+ "line": 596,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L596"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 931,
+ "id": 932,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 933,
+ "id": 934,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -28976,9 +29016,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 595,
+ "line": 604,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L595"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L604"
}
],
"type": {
@@ -28987,7 +29027,7 @@
}
},
{
- "id": 932,
+ "id": 933,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29021,9 +29061,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 593,
+ "line": 602,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L593"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L602"
}
],
"type": {
@@ -29035,15 +29075,15 @@
"groups": [
{
"title": "Properties",
- "children": [933, 932]
+ "children": [934, 933]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 587,
+ "line": 596,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L596"
}
]
}
@@ -29053,22 +29093,22 @@
"groups": [
{
"title": "Properties",
- "children": [930]
+ "children": [931]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 586,
+ "line": 595,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L595"
}
]
}
}
},
{
- "id": 977,
+ "id": 978,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -29076,22 +29116,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 674,
+ "line": 683,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L683"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 978,
+ "id": 979,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 982,
+ "id": 983,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -29117,9 +29157,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 680,
+ "line": 689,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L680"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L689"
}
],
"type": {
@@ -29128,7 +29168,7 @@
}
},
{
- "id": 983,
+ "id": 984,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -29154,9 +29194,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 682,
+ "line": 691,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L682"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L691"
}
],
"type": {
@@ -29165,7 +29205,7 @@
}
},
{
- "id": 984,
+ "id": 985,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29175,22 +29215,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 683,
+ "line": 692,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L692"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 985,
+ "id": 986,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 986,
+ "id": 987,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29208,9 +29248,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 685,
+ "line": 694,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L685"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L694"
}
],
"type": {
@@ -29222,22 +29262,22 @@
"groups": [
{
"title": "Properties",
- "children": [986]
+ "children": [987]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 683,
+ "line": 692,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L692"
}
]
}
}
},
{
- "id": 979,
+ "id": 980,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -29309,9 +29349,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 676,
+ "line": 685,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L676"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L685"
}
],
"type": {
@@ -29347,7 +29387,7 @@
{
"type": "reflection",
"declaration": {
- "id": 980,
+ "id": 981,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -29355,9 +29395,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 676,
+ "line": 685,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L676"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L685"
}
]
}
@@ -29368,7 +29408,7 @@
}
},
{
- "id": 981,
+ "id": 982,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -29416,9 +29456,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 678,
+ "line": 687,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L678"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L687"
}
],
"type": {
@@ -29430,22 +29470,22 @@
"groups": [
{
"title": "Properties",
- "children": [982, 983, 984, 979, 981]
+ "children": [983, 984, 985, 980, 982]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 674,
+ "line": 683,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L683"
}
]
}
}
},
{
- "id": 965,
+ "id": 966,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -29453,22 +29493,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 659,
+ "line": 668,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L668"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 966,
+ "id": 967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 968,
+ "id": 969,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29478,22 +29518,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 662,
+ "line": 671,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L662"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L671"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 969,
+ "id": 970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 972,
+ "id": 973,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -29511,15 +29551,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 668,
+ "line": 677,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 973,
+ "id": 974,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -29527,14 +29567,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 668,
+ "line": 677,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"indexSignatures": [
{
- "id": 974,
+ "id": 975,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -29542,14 +29582,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 668,
+ "line": 677,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"parameters": [
{
- "id": 975,
+ "id": 976,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -29570,7 +29610,7 @@
}
},
{
- "id": 970,
+ "id": 971,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -29588,9 +29628,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 664,
+ "line": 673,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L673"
}
],
"type": {
@@ -29599,7 +29639,7 @@
}
},
{
- "id": 971,
+ "id": 972,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -29617,9 +29657,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 666,
+ "line": 675,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L666"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L675"
}
],
"type": {
@@ -29628,7 +29668,7 @@
}
},
{
- "id": 976,
+ "id": 977,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -29646,9 +29686,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 670,
+ "line": 679,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L670"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L679"
}
],
"type": {
@@ -29660,22 +29700,22 @@
"groups": [
{
"title": "Properties",
- "children": [972, 970, 971, 976]
+ "children": [973, 971, 972, 977]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 662,
+ "line": 671,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L662"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L671"
}
]
}
}
},
{
- "id": 967,
+ "id": 968,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -29691,9 +29731,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 661,
+ "line": 670,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L661"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L670"
}
],
"type": {
@@ -29707,22 +29747,22 @@
"groups": [
{
"title": "Properties",
- "children": [968, 967]
+ "children": [969, 968]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 659,
+ "line": 668,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L668"
}
]
}
}
},
{
- "id": 942,
+ "id": 943,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -29730,9 +29770,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 614,
+ "line": 623,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L614"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L623"
}
],
"type": {
@@ -29750,14 +29790,14 @@
{
"type": "reflection",
"declaration": {
- "id": 943,
+ "id": 944,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 944,
+ "id": 945,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29767,22 +29807,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 615,
+ "line": 624,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L615"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L624"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 945,
+ "id": 946,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 946,
+ "id": 947,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29792,9 +29832,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 616,
+ "line": 625,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L616"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L625"
}
],
"type": {
@@ -29806,15 +29846,15 @@
"groups": [
{
"title": "Properties",
- "children": [946]
+ "children": [947]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 615,
+ "line": 624,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L615"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L624"
}
]
}
@@ -29824,15 +29864,15 @@
"groups": [
{
"title": "Properties",
- "children": [944]
+ "children": [945]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 614,
+ "line": 623,
"character": 70,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L614"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L623"
}
]
}
@@ -29841,7 +29881,7 @@
}
},
{
- "id": 947,
+ "id": 948,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -29849,9 +29889,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 620,
+ "line": 629,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L620"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L629"
}
],
"type": {
@@ -29860,14 +29900,14 @@
{
"type": "reflection",
"declaration": {
- "id": 948,
+ "id": 949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 949,
+ "id": 950,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -29883,9 +29923,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 623,
+ "line": 632,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L623"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L632"
}
],
"type": {
@@ -29894,7 +29934,7 @@
}
},
{
- "id": 950,
+ "id": 951,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29904,22 +29944,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 624,
+ "line": 633,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L633"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 951,
+ "id": 952,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 955,
+ "id": 956,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29937,9 +29977,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 636,
+ "line": 645,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L636"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L645"
}
],
"type": {
@@ -29948,7 +29988,7 @@
}
},
{
- "id": 954,
+ "id": 955,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29982,9 +30022,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 634,
+ "line": 643,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L634"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L643"
}
],
"type": {
@@ -29993,7 +30033,7 @@
}
},
{
- "id": 952,
+ "id": 953,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -30011,9 +30051,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 626,
+ "line": 635,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L635"
}
],
"type": {
@@ -30022,7 +30062,7 @@
}
},
{
- "id": 953,
+ "id": 954,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -30040,9 +30080,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 628,
+ "line": 637,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L628"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L637"
}
],
"type": {
@@ -30054,15 +30094,15 @@
"groups": [
{
"title": "Properties",
- "children": [955, 954, 952, 953]
+ "children": [956, 955, 953, 954]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 624,
+ "line": 633,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L633"
}
]
}
@@ -30072,15 +30112,15 @@
"groups": [
{
"title": "Properties",
- "children": [949, 950]
+ "children": [950, 951]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 621,
+ "line": 630,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L621"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L630"
}
]
}
@@ -30088,14 +30128,14 @@
{
"type": "reflection",
"declaration": {
- "id": 956,
+ "id": 957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 958,
+ "id": 959,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30105,22 +30145,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 642,
+ "line": 651,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L642"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L651"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 959,
+ "id": 960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 962,
+ "id": 963,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30138,9 +30178,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 652,
+ "line": 661,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L661"
}
],
"type": {
@@ -30149,7 +30189,7 @@
}
},
{
- "id": 963,
+ "id": 964,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -30167,9 +30207,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 654,
+ "line": 663,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L654"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L663"
}
],
"type": {
@@ -30187,7 +30227,7 @@
}
},
{
- "id": 961,
+ "id": 962,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30221,9 +30261,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 650,
+ "line": 659,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L659"
}
],
"type": {
@@ -30232,7 +30272,7 @@
}
},
{
- "id": 960,
+ "id": 961,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -30250,9 +30290,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 644,
+ "line": 653,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L644"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L653"
}
],
"type": {
@@ -30264,22 +30304,22 @@
"groups": [
{
"title": "Properties",
- "children": [962, 963, 961, 960]
+ "children": [963, 964, 962, 961]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 642,
+ "line": 651,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L642"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L651"
}
]
}
}
},
{
- "id": 957,
+ "id": 958,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -30295,9 +30335,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 641,
+ "line": 650,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L641"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L650"
}
],
"type": {
@@ -30309,15 +30349,15 @@
"groups": [
{
"title": "Properties",
- "children": [958, 957]
+ "children": [959, 958]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 639,
+ "line": 648,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L648"
}
]
}
@@ -30326,7 +30366,7 @@
}
},
{
- "id": 1075,
+ "id": 1076,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -30334,9 +30374,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 846,
+ "line": 855,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L846"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L855"
}
],
"type": {
@@ -30345,14 +30385,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1076,
+ "id": 1077,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1078,
+ "id": 1079,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30362,22 +30402,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 851,
+ "line": 860,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L851"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L860"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1079,
+ "id": 1080,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1081,
+ "id": 1082,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30395,9 +30435,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 855,
+ "line": 864,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L855"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L864"
}
],
"type": {
@@ -30406,7 +30446,7 @@
}
},
{
- "id": 1080,
+ "id": 1081,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -30424,9 +30464,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 853,
+ "line": 862,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L853"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L862"
}
],
"type": {
@@ -30435,7 +30475,7 @@
}
},
{
- "id": 1082,
+ "id": 1083,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -30453,9 +30493,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 861,
+ "line": 870,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L861"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L870"
}
],
"type": {
@@ -30467,22 +30507,22 @@
"groups": [
{
"title": "Properties",
- "children": [1081, 1080, 1082]
+ "children": [1082, 1081, 1083]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 851,
+ "line": 860,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L851"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L860"
}
]
}
}
},
{
- "id": 1077,
+ "id": 1078,
"name": "providerId",
"variant": "declaration",
"kind": 1024,
@@ -30498,9 +30538,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 849,
+ "line": 858,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L849"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L858"
}
],
"type": {
@@ -30512,15 +30552,15 @@
"groups": [
{
"title": "Properties",
- "children": [1078, 1077]
+ "children": [1079, 1078]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 847,
+ "line": 856,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L847"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L856"
}
]
}
@@ -30528,14 +30568,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1083,
+ "id": 1084,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1084,
+ "id": 1085,
"name": "domain",
"variant": "declaration",
"kind": 1024,
@@ -30551,9 +30591,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 866,
+ "line": 875,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L866"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L875"
}
],
"type": {
@@ -30562,7 +30602,7 @@
}
},
{
- "id": 1085,
+ "id": 1086,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30572,22 +30612,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 868,
+ "line": 877,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L868"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L877"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1086,
+ "id": 1087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1088,
+ "id": 1089,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30605,9 +30645,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 872,
+ "line": 881,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L872"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L881"
}
],
"type": {
@@ -30616,7 +30656,7 @@
}
},
{
- "id": 1087,
+ "id": 1088,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -30634,9 +30674,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 870,
+ "line": 879,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L870"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L879"
}
],
"type": {
@@ -30645,7 +30685,7 @@
}
},
{
- "id": 1089,
+ "id": 1090,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -30663,9 +30703,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 878,
+ "line": 887,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L878"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L887"
}
],
"type": {
@@ -30677,15 +30717,15 @@
"groups": [
{
"title": "Properties",
- "children": [1088, 1087, 1089]
+ "children": [1089, 1088, 1090]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 868,
+ "line": 877,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L868"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L877"
}
]
}
@@ -30695,15 +30735,15 @@
"groups": [
{
"title": "Properties",
- "children": [1084, 1085]
+ "children": [1085, 1086]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 864,
+ "line": 873,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L864"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L873"
}
]
}
@@ -30712,7 +30752,7 @@
}
},
{
- "id": 1331,
+ "id": 1332,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -30720,22 +30760,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1414,
+ "line": 1423,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1423"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1332,
+ "id": 1333,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1333,
+ "id": 1334,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -30753,9 +30793,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1425,
+ "line": 1434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1425"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1434"
}
],
"type": {
@@ -30780,22 +30820,22 @@
"groups": [
{
"title": "Properties",
- "children": [1333]
+ "children": [1334]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1414,
+ "line": 1423,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1423"
}
]
}
}
},
{
- "id": 1383,
+ "id": 1384,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -30803,9 +30843,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1579,
+ "line": 1588,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1588"
}
],
"type": {
@@ -30818,7 +30858,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1382,
+ "target": 1383,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -30826,7 +30866,7 @@
}
},
{
- "id": 934,
+ "id": 935,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -30834,14 +30874,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 599,
+ "line": 608,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L599"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L608"
}
],
"type": {
"type": "reference",
- "target": 762,
+ "target": 763,
"typeArguments": [
{
"type": "intersection",
@@ -30858,14 +30898,14 @@
{
"type": "reflection",
"declaration": {
- "id": 935,
+ "id": 936,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 936,
+ "id": 937,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30875,22 +30915,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 601,
+ "line": 610,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L610"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 937,
+ "id": 938,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 940,
+ "id": 941,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30900,9 +30940,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 604,
+ "line": 613,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L604"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L613"
}
],
"type": {
@@ -30911,7 +30951,7 @@
}
},
{
- "id": 941,
+ "id": 942,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -30921,9 +30961,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 605,
+ "line": 614,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L605"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L614"
}
],
"type": {
@@ -30941,7 +30981,7 @@
}
},
{
- "id": 939,
+ "id": 940,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30951,9 +30991,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 603,
+ "line": 612,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L612"
}
],
"type": {
@@ -30962,7 +31002,7 @@
}
},
{
- "id": 938,
+ "id": 939,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -30972,9 +31012,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 602,
+ "line": 611,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L611"
}
],
"type": {
@@ -30986,15 +31026,15 @@
"groups": [
{
"title": "Properties",
- "children": [940, 941, 939, 938]
+ "children": [941, 942, 940, 939]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 601,
+ "line": 610,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L610"
}
]
}
@@ -31004,15 +31044,15 @@
"groups": [
{
"title": "Properties",
- "children": [936]
+ "children": [937]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 600,
+ "line": 609,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L600"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L609"
}
]
}
@@ -31025,7 +31065,7 @@
}
},
{
- "id": 987,
+ "id": 988,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -31033,22 +31073,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 689,
+ "line": 698,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L698"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 988,
+ "id": 989,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 993,
+ "id": 994,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -31058,9 +31098,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 691,
+ "line": 700,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L691"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L700"
}
],
"type": {
@@ -31069,14 +31109,14 @@
{
"type": "reflection",
"declaration": {
- "id": 994,
+ "id": 995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 995,
+ "id": 996,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -31084,15 +31124,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 692,
+ "line": 701,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L692"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L701"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 996,
+ "id": 997,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -31100,14 +31140,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 692,
+ "line": 701,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L692"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L701"
}
],
"signatures": [
{
- "id": 997,
+ "id": 998,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -31125,15 +31165,15 @@
"groups": [
{
"title": "Properties",
- "children": [995]
+ "children": [996]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 691,
+ "line": 700,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L691"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L700"
}
]
}
@@ -31146,7 +31186,7 @@
}
},
{
- "id": 989,
+ "id": 990,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -31156,15 +31196,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 690,
+ "line": 699,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L690"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L699"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 990,
+ "id": 991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -31172,21 +31212,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 690,
+ "line": 699,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L690"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L699"
}
],
"signatures": [
{
- "id": 991,
+ "id": 992,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 992,
+ "id": 993,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -31250,7 +31290,7 @@
}
},
{
- "id": 998,
+ "id": 999,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -31260,15 +31300,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 695,
+ "line": 704,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L695"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L704"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 999,
+ "id": 1000,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -31276,21 +31316,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 695,
+ "line": 704,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L695"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L704"
}
],
"signatures": [
{
- "id": 1000,
+ "id": 1001,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 1001,
+ "id": 1002,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -31306,7 +31346,7 @@
}
},
{
- "id": 1002,
+ "id": 1003,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -31366,22 +31406,22 @@
"groups": [
{
"title": "Properties",
- "children": [993, 989, 998]
+ "children": [994, 990, 999]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 689,
+ "line": 698,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L689"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L698"
}
]
}
}
},
{
- "id": 1003,
+ "id": 1004,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -31389,9 +31429,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 698,
+ "line": 707,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L698"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L707"
}
],
"type": {
@@ -31400,14 +31440,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1004,
+ "id": 1005,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1005,
+ "id": 1006,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -31415,9 +31455,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 700,
+ "line": 709,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L700"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L709"
}
],
"type": {
@@ -31426,7 +31466,7 @@
}
},
{
- "id": 1008,
+ "id": 1009,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -31436,22 +31476,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 708,
+ "line": 717,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L717"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1009,
+ "id": 1010,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1011,
+ "id": 1012,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -31469,9 +31509,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 713,
+ "line": 722,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L713"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L722"
}
],
"type": {
@@ -31480,7 +31520,7 @@
}
},
{
- "id": 1012,
+ "id": 1013,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -31490,9 +31530,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 715,
+ "line": 724,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L715"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L724"
}
],
"type": {
@@ -31553,7 +31593,7 @@
}
},
{
- "id": 1010,
+ "id": 1011,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -31571,9 +31611,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 710,
+ "line": 719,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L710"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L719"
}
],
"type": {
@@ -31585,22 +31625,22 @@
"groups": [
{
"title": "Properties",
- "children": [1011, 1012, 1010]
+ "children": [1012, 1013, 1011]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 708,
+ "line": 717,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L708"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L717"
}
]
}
}
},
{
- "id": 1007,
+ "id": 1008,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -31618,9 +31658,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 706,
+ "line": 715,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L706"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L715"
}
],
"type": {
@@ -31629,7 +31669,7 @@
}
},
{
- "id": 1006,
+ "id": 1007,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -31655,14 +31695,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 703,
+ "line": 712,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L703"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L712"
}
],
"type": {
"type": "reference",
- "target": 987,
+ "target": 988,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -31671,15 +31711,15 @@
"groups": [
{
"title": "Properties",
- "children": [1005, 1008, 1007, 1006]
+ "children": [1006, 1009, 1008, 1007]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 699,
+ "line": 708,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L699"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L708"
}
]
}
@@ -31687,14 +31727,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1013,
+ "id": 1014,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1014,
+ "id": 1015,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -31702,9 +31742,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 721,
+ "line": 730,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L721"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L730"
}
],
"type": {
@@ -31713,7 +31753,7 @@
}
},
{
- "id": 1015,
+ "id": 1016,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -31753,9 +31793,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 724,
+ "line": 733,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L724"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L733"
}
],
"type": {
@@ -31764,7 +31804,7 @@
}
},
{
- "id": 1017,
+ "id": 1018,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -31774,22 +31814,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 729,
+ "line": 738,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L729"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L738"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1018,
+ "id": 1019,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1019,
+ "id": 1020,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -31807,9 +31847,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 731,
+ "line": 740,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L731"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L740"
}
],
"type": {
@@ -31821,22 +31861,22 @@
"groups": [
{
"title": "Properties",
- "children": [1019]
+ "children": [1020]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 729,
+ "line": 738,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L729"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L738"
}
]
}
}
},
{
- "id": 1016,
+ "id": 1017,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -31852,9 +31892,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 727,
+ "line": 736,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L727"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L736"
}
],
"type": {
@@ -31871,15 +31911,15 @@
"groups": [
{
"title": "Properties",
- "children": [1014, 1015, 1017, 1016]
+ "children": [1015, 1016, 1018, 1017]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 720,
+ "line": 729,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L720"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L729"
}
]
}
@@ -31888,7 +31928,7 @@
}
},
{
- "id": 820,
+ "id": 821,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -31896,26 +31936,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 269,
+ "line": 278,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L278"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 768,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 821,
+ "id": 822,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 822,
+ "id": 823,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -31939,9 +31979,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 277,
+ "line": 286,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L286"
}
],
"type": {
@@ -31953,15 +31993,15 @@
"groups": [
{
"title": "Properties",
- "children": [822]
+ "children": [823]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 269,
+ "line": 278,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L278"
}
]
}
@@ -31972,7 +32012,7 @@
}
},
{
- "id": 764,
+ "id": 765,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -31988,21 +32028,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 194,
+ "line": 203,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L203"
}
],
"typeParameters": [
{
- "id": 765,
+ "id": 766,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 766,
+ "id": 767,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -32012,7 +32052,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 765,
+ "target": 766,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32029,14 +32069,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 765,
+ "target": 766,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 766,
+ "target": 767,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32047,7 +32087,7 @@
}
},
{
- "id": 1313,
+ "id": 1314,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -32055,9 +32095,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1383,
+ "line": 1392,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1383"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1392"
}
],
"type": {
@@ -32114,14 +32154,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1314,
+ "id": 1315,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1315,
+ "id": 1316,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -32147,9 +32187,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1393,
+ "line": 1402,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1393"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1402"
}
],
"type": {
@@ -32161,15 +32201,15 @@
"groups": [
{
"title": "Properties",
- "children": [1315]
+ "children": [1316]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1385,
+ "line": 1394,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1385"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1394"
}
]
}
@@ -32178,7 +32218,7 @@
}
},
{
- "id": 1412,
+ "id": 1413,
"name": "UpdateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -32194,22 +32234,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1664,
+ "line": 1673,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1673"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1413,
+ "id": 1414,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1414,
+ "id": 1415,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -32227,9 +32267,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1666,
+ "line": 1675,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1666"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1675"
}
],
"type": {
@@ -32238,7 +32278,7 @@
}
},
{
- "id": 1415,
+ "id": 1416,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -32256,9 +32296,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1668,
+ "line": 1677,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1668"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1677"
}
],
"type": {
@@ -32267,7 +32307,7 @@
}
},
{
- "id": 1418,
+ "id": 1419,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -32285,23 +32325,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1674,
+ "line": 1683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1674"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1683"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1384,
+ "target": 1385,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1416,
+ "id": 1417,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -32319,9 +32359,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1670,
+ "line": 1679,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1670"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1679"
}
],
"type": {
@@ -32330,7 +32370,7 @@
}
},
{
- "id": 1417,
+ "id": 1418,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -32348,9 +32388,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1672,
+ "line": 1681,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1672"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1681"
}
],
"type": {
@@ -32365,22 +32405,22 @@
"groups": [
{
"title": "Properties",
- "children": [1414, 1415, 1418, 1416, 1417]
+ "children": [1415, 1416, 1419, 1417, 1418]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1664,
+ "line": 1673,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1673"
}
]
}
}
},
{
- "id": 823,
+ "id": 824,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -32388,26 +32428,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 280,
+ "line": 289,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L289"
}
],
"type": {
"type": "reference",
- "target": 776,
+ "target": 777,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 824,
+ "id": 825,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 825,
+ "id": 826,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -32415,14 +32455,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 281,
+ "line": 290,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L281"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L290"
}
],
"type": {
"type": "reference",
- "target": 872,
+ "target": 873,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -32431,15 +32471,15 @@
"groups": [
{
"title": "Properties",
- "children": [825]
+ "children": [826]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 280,
+ "line": 289,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L289"
}
]
}
@@ -32450,7 +32490,7 @@
}
},
{
- "id": 1039,
+ "id": 1040,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -32458,9 +32498,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 776,
+ "line": 785,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L776"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L785"
}
],
"type": {
@@ -32468,19 +32508,19 @@
"types": [
{
"type": "reference",
- "target": 1040,
+ "target": 1041,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1048,
+ "target": 1049,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1056,
+ "target": 1057,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -32488,7 +32528,7 @@
}
},
{
- "id": 758,
+ "id": 759,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -32496,22 +32536,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 178,
+ "line": 187,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L187"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 759,
+ "id": 760,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 761,
+ "id": 762,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -32519,9 +32559,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 180,
+ "line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L189"
}
],
"type": {
@@ -32530,7 +32570,7 @@
}
},
{
- "id": 760,
+ "id": 761,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -32538,16 +32578,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 179,
+ "line": 188,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L188"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 757,
+ "target": 758,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -32557,22 +32597,22 @@
"groups": [
{
"title": "Properties",
- "children": [761, 760]
+ "children": [762, 761]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 178,
+ "line": 187,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L187"
}
]
}
}
},
{
- "id": 757,
+ "id": 758,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -32580,9 +32620,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 177,
+ "line": 186,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L186"
}
],
"type": {
@@ -32607,7 +32647,7 @@
}
},
{
- "id": 1038,
+ "id": 1039,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -32615,9 +32655,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 774,
+ "line": 783,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L783"
}
],
"type": {
@@ -32625,13 +32665,13 @@
"types": [
{
"type": "reference",
- "target": 1003,
+ "target": 1004,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1021,
+ "target": 1022,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -32651,7 +32691,7 @@
"fileName": "packages/core/auth-js/src/AuthAdminApi.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/AuthAdminApi.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/AuthAdminApi.ts#L3"
}
],
"type": {
@@ -32678,7 +32718,7 @@
"fileName": "packages/core/auth-js/src/AuthClient.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/AuthClient.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/AuthClient.ts#L3"
}
],
"type": {
@@ -32709,7 +32749,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L6"
}
],
"type": {
@@ -32736,7 +32776,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L10"
}
],
"type": {
@@ -32757,7 +32797,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L6"
}
]
}
@@ -32765,7 +32805,7 @@
"defaultValue": "..."
},
{
- "id": 1382,
+ "id": 1383,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -32775,9 +32815,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1578,
+ "line": 1587,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/types.ts#L1578"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/types.ts#L1587"
}
],
"type": {
@@ -32804,7 +32844,7 @@
"defaultValue": "..."
},
{
- "id": 1510,
+ "id": 1511,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -32814,12 +32854,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"signatures": [
{
- "id": 1511,
+ "id": 1512,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -32829,12 +32869,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"parameters": [
{
- "id": 1512,
+ "id": 1513,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -32851,7 +32891,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -32860,7 +32900,7 @@
]
},
{
- "id": 1507,
+ "id": 1508,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -32870,12 +32910,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"signatures": [
{
- "id": 1508,
+ "id": 1509,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -32885,12 +32925,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"parameters": [
{
- "id": 1509,
+ "id": 1510,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -32907,7 +32947,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1528,
+ "target": 1529,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -32916,7 +32956,7 @@
]
},
{
- "id": 1516,
+ "id": 1517,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -32926,12 +32966,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"signatures": [
{
- "id": 1517,
+ "id": 1518,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -32941,12 +32981,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"parameters": [
{
- "id": 1518,
+ "id": 1519,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -32963,7 +33003,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1595,
+ "target": 1596,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -32972,7 +33012,7 @@
]
},
{
- "id": 1519,
+ "id": 1520,
"name": "isAuthPKCECodeVerifierMissingError",
"variant": "declaration",
"kind": 64,
@@ -32982,12 +33022,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 252,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L252"
}
],
"signatures": [
{
- "id": 1520,
+ "id": 1521,
"name": "isAuthPKCECodeVerifierMissingError",
"variant": "signature",
"kind": 4096,
@@ -32997,12 +33037,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 252,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L252"
}
],
"parameters": [
{
- "id": 1521,
+ "id": 1522,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -33019,7 +33059,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1649,
+ "target": 1650,
"name": "AuthPKCECodeVerifierMissingError",
"package": "@supabase/auth-js"
}
@@ -33028,7 +33068,7 @@
]
},
{
- "id": 1522,
+ "id": 1523,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -33038,12 +33078,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"signatures": [
{
- "id": 1523,
+ "id": 1524,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -33053,12 +33093,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"parameters": [
{
- "id": 1524,
+ "id": 1525,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -33075,7 +33115,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1657,
+ "target": 1658,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -33084,7 +33124,7 @@
]
},
{
- "id": 1513,
+ "id": 1514,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -33094,12 +33134,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"signatures": [
{
- "id": 1514,
+ "id": 1515,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -33109,12 +33149,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"parameters": [
{
- "id": 1515,
+ "id": 1516,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -33131,7 +33171,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1570,
+ "target": 1571,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -33140,7 +33180,7 @@
]
},
{
- "id": 1525,
+ "id": 1526,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -33150,12 +33190,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 306,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L306"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L306"
}
],
"signatures": [
{
- "id": 1526,
+ "id": 1527,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -33165,12 +33205,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 306,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/errors.ts#L306"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/errors.ts#L306"
}
],
"parameters": [
{
- "id": 1527,
+ "id": 1528,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -33187,7 +33227,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -33206,7 +33246,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"signatures": [
@@ -33282,7 +33322,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"typeParameters": [
@@ -33368,7 +33408,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"signatures": [
@@ -33383,7 +33423,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"type": {
@@ -33442,7 +33482,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 223,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L223"
}
],
"signatures": [
@@ -33485,7 +33525,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 223,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L223"
}
],
"typeParameters": [
@@ -33571,7 +33611,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L226"
}
],
"signatures": [
@@ -33586,7 +33626,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/auth-js/src/lib/locks.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/auth-js/src/lib/locks.ts#L226"
}
],
"type": {
@@ -33639,35 +33679,35 @@
{
"title": "Classes",
"children": [
- 1538, 1528, 1595, 1586, 1679, 1578, 1649, 1622, 1657, 1570, 1548, 1667, 1558, 1, 107, 698
+ 1539, 1529, 1596, 1587, 1680, 1579, 1650, 1623, 1658, 1571, 1549, 1668, 1559, 1, 107, 698
]
},
{
"title": "Interfaces",
"children": [
- 905, 837, 1484, 1112, 1306, 1432, 1175, 1375, 1355, 826, 918, 872, 864, 899, 840, 869, 1048,
- 1040, 1056
+ 906, 838, 1485, 1113, 1307, 1433, 1176, 1376, 1356, 827, 919, 873, 865, 900, 841, 870, 1049,
+ 1041, 1057
]
},
{
"title": "Type Aliases",
"children": [
- 835, 716, 715, 1169, 964, 1296, 1293, 1303, 1300, 1160, 1164, 1159, 1161, 1162, 1163, 1338,
- 1155, 1337, 1339, 1170, 1165, 1156, 1154, 1147, 1474, 1475, 1481, 1482, 793, 784, 788, 798,
- 802, 1319, 1404, 1060, 1020, 1021, 853, 852, 1106, 1096, 1115, 1120, 1116, 1127, 1101, 1090,
- 726, 1316, 1340, 717, 1146, 1145, 1143, 1142, 1144, 1128, 1335, 1334, 1336, 1141, 1129,
- 1140, 1133, 1132, 1134, 1138, 1059, 1455, 1461, 1388, 1384, 1420, 1387, 1419, 1385, 1386,
- 1476, 1471, 807, 1327, 1320, 762, 714, 767, 776, 1345, 1061, 928, 977, 965, 942, 947, 1075,
- 1331, 1383, 934, 987, 1003, 820, 764, 1313, 1412, 823, 1039, 758, 757, 1038
+ 836, 716, 715, 1170, 965, 1297, 1294, 1304, 1301, 1161, 1165, 1160, 1162, 1163, 1164, 1339,
+ 1156, 1338, 1340, 1171, 1166, 1157, 1155, 1148, 1475, 1476, 1482, 1483, 794, 785, 789, 799,
+ 803, 1320, 1405, 1061, 1021, 1022, 854, 853, 1107, 1097, 1116, 1121, 1117, 1128, 1102, 1091,
+ 726, 1317, 1341, 717, 1147, 1146, 1144, 1143, 1145, 1129, 1336, 1335, 1337, 1142, 1130,
+ 1141, 1134, 1133, 1135, 1139, 1060, 1456, 1462, 1389, 1385, 1421, 1388, 1420, 1386, 1387,
+ 1477, 1472, 808, 1328, 1321, 763, 714, 768, 777, 1346, 1062, 929, 978, 966, 943, 948, 1076,
+ 1332, 1384, 935, 988, 1004, 821, 765, 1314, 1413, 824, 1040, 759, 758, 1039
]
},
{
"title": "Variables",
- "children": [688, 689, 703, 1382]
+ "children": [688, 689, 703, 1383]
},
{
"title": "Functions",
- "children": [1510, 1507, 1516, 1519, 1522, 1513, 1525, 690, 706]
+ "children": [1511, 1508, 1517, 1520, 1523, 1514, 1526, 690, 706]
}
],
"packageName": "@supabase/auth-js",
@@ -35173,651 +35213,651 @@
},
"757": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "WeakPasswordReasons"
+ "qualifiedName": "__type.skipAutoInitialize"
},
"758": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "WeakPassword"
+ "qualifiedName": "WeakPasswordReasons"
},
"759": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WeakPassword"
},
"760": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.reasons"
+ "qualifiedName": "__type"
},
"761": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.reasons"
},
"762": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Prettify"
+ "qualifiedName": "__type.message"
},
"763": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "Prettify"
},
"764": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "StrictOmit"
+ "qualifiedName": "T"
},
"765": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "StrictOmit"
},
"766": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "K"
+ "qualifiedName": "T"
},
"767": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "RequestResult"
+ "qualifiedName": "K"
},
"768": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RequestResult"
},
"769": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"770": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"771": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"772": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"773": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"774": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.error"
},
"775": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "ErrorType"
+ "qualifiedName": "T"
},
"776": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "RequestResultSafeDestructure"
+ "qualifiedName": "ErrorType"
},
"777": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RequestResultSafeDestructure"
},
"778": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"779": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"780": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"781": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"782": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"783": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.error"
},
"784": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthResponse"
+ "qualifiedName": "T"
},
"785": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthResponse"
},
"786": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"787": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"788": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthResponsePassword"
+ "qualifiedName": "__type.session"
},
"789": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthResponsePassword"
},
"790": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"791": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"792": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.weak_password"
+ "qualifiedName": "__type.session"
},
"793": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOtpResponse"
+ "qualifiedName": "__type.weak_password"
},
"794": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOtpResponse"
},
"795": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"796": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"797": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.messageId"
+ "qualifiedName": "__type.session"
},
"798": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthTokenResponse"
+ "qualifiedName": "__type.messageId"
},
"799": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthTokenResponse"
},
"800": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"801": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"802": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthTokenResponsePassword"
+ "qualifiedName": "__type.session"
},
"803": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthTokenResponsePassword"
},
"804": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"805": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"806": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.weakPassword"
+ "qualifiedName": "__type.session"
},
"807": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthResponse"
+ "qualifiedName": "__type.weakPassword"
},
"808": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthResponse"
},
"809": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"810": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"811": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"812": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.provider"
},
"813": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.url"
},
"814": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"815": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"816": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"817": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"818": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.provider"
},
"819": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.url"
},
"820": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SSOResponse"
+ "qualifiedName": "__type.error"
},
"821": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SSOResponse"
},
"822": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"823": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserResponse"
+ "qualifiedName": "__type.url"
},
"824": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UserResponse"
},
"825": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"826": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session"
+ "qualifiedName": "__type.user"
},
"827": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.provider_token"
+ "qualifiedName": "Session"
},
"828": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.provider_refresh_token"
+ "qualifiedName": "Session.provider_token"
},
"829": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.access_token"
+ "qualifiedName": "Session.provider_refresh_token"
},
"830": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.refresh_token"
+ "qualifiedName": "Session.access_token"
},
"831": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.expires_in"
+ "qualifiedName": "Session.refresh_token"
},
"832": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.expires_at"
+ "qualifiedName": "Session.expires_in"
},
"833": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.token_type"
+ "qualifiedName": "Session.expires_at"
},
"834": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Session.user"
+ "qualifiedName": "Session.token_type"
},
"835": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMRMethod"
+ "qualifiedName": "Session.user"
},
"836": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AMRMethod"
},
"837": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMREntry"
+ "qualifiedName": "__type"
},
"838": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMREntry.method"
+ "qualifiedName": "AMREntry"
},
"839": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AMREntry.timestamp"
+ "qualifiedName": "AMREntry.method"
},
"840": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity"
+ "qualifiedName": "AMREntry.timestamp"
},
"841": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity.id"
+ "qualifiedName": "UserIdentity"
},
"842": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity.user_id"
+ "qualifiedName": "UserIdentity.id"
},
"843": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserIdentity.identity_data"
+ "qualifiedName": "UserIdentity.user_id"
},
"844": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UserIdentity.identity_data"
},
"845": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "846": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "847": {
+ "848": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "848": {
+ "849": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "849": {
+ "850": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "850": {
+ "851": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "851": {
+ "852": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "852": {
+ "853": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "853": {
+ "854": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Factor"
},
- "854": {
+ "855": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "855": {
+ "856": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "856": {
+ "857": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "857": {
+ "858": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "858": {
+ "859": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "859": {
+ "860": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "860": {
+ "861": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "861": {
+ "862": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.last_challenged_at"
},
- "862": {
+ "863": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Type"
},
- "863": {
+ "864": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Status"
},
- "864": {
+ "865": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "865": {
+ "866": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.provider"
},
- "866": {
+ "867": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.providers"
},
- "867": {
+ "868": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.__index"
},
- "869": {
+ "870": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata"
},
- "870": {
+ "871": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata.__index"
},
- "872": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User"
- },
"873": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.id"
+ "qualifiedName": "User"
},
"874": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.app_metadata"
+ "qualifiedName": "User.id"
},
"875": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.user_metadata"
+ "qualifiedName": "User.app_metadata"
},
"876": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.aud"
+ "qualifiedName": "User.user_metadata"
},
"877": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.confirmation_sent_at"
+ "qualifiedName": "User.aud"
},
"878": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.recovery_sent_at"
+ "qualifiedName": "User.confirmation_sent_at"
},
"879": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email_change_sent_at"
+ "qualifiedName": "User.recovery_sent_at"
},
"880": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.new_email"
+ "qualifiedName": "User.email_change_sent_at"
},
"881": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.new_phone"
+ "qualifiedName": "User.new_email"
},
"882": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.invited_at"
+ "qualifiedName": "User.new_phone"
},
"883": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.action_link"
+ "qualifiedName": "User.invited_at"
},
"884": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email"
+ "qualifiedName": "User.action_link"
},
"885": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.phone"
+ "qualifiedName": "User.email"
},
"886": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.created_at"
+ "qualifiedName": "User.phone"
},
"887": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.confirmed_at"
+ "qualifiedName": "User.created_at"
},
"888": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email_confirmed_at"
+ "qualifiedName": "User.confirmed_at"
},
"889": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.phone_confirmed_at"
+ "qualifiedName": "User.email_confirmed_at"
},
"890": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.last_sign_in_at"
+ "qualifiedName": "User.phone_confirmed_at"
},
"891": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.role"
+ "qualifiedName": "User.last_sign_in_at"
},
"892": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.updated_at"
+ "qualifiedName": "User.role"
},
"893": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.identities"
+ "qualifiedName": "User.updated_at"
},
"894": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.is_anonymous"
+ "qualifiedName": "User.identities"
},
"895": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.is_sso_user"
+ "qualifiedName": "User.is_anonymous"
},
"896": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.factors"
+ "qualifiedName": "User.is_sso_user"
},
"897": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.deleted_at"
+ "qualifiedName": "User.factors"
},
"898": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.banned_until"
+ "qualifiedName": "User.deleted_at"
},
"899": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes"
+ "qualifiedName": "User.banned_until"
},
"900": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.email"
+ "qualifiedName": "UserAttributes"
},
"901": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.phone"
+ "qualifiedName": "UserAttributes.email"
},
"902": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.password"
+ "qualifiedName": "UserAttributes.phone"
},
"903": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.nonce"
+ "qualifiedName": "UserAttributes.password"
},
"904": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.data"
+ "qualifiedName": "UserAttributes.nonce"
},
"905": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes"
+ "qualifiedName": "UserAttributes.data"
},
"906": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.user_metadata"
+ "qualifiedName": "AdminUserAttributes"
},
"907": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.app_metadata"
+ "qualifiedName": "AdminUserAttributes.user_metadata"
},
"908": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.email_confirm"
+ "qualifiedName": "AdminUserAttributes.app_metadata"
},
"909": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.phone_confirm"
+ "qualifiedName": "AdminUserAttributes.email_confirm"
},
"910": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.ban_duration"
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
},
"911": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.role"
+ "qualifiedName": "AdminUserAttributes.ban_duration"
},
"912": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.password_hash"
+ "qualifiedName": "AdminUserAttributes.role"
},
"913": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.id"
+ "qualifiedName": "AdminUserAttributes.password_hash"
},
"914": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "nonce"
+ "qualifiedName": "AdminUserAttributes.id"
},
"915": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "nonce"
},
"916": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "email"
+ "qualifiedName": "phone"
},
"917": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "password"
+ "qualifiedName": "email"
},
"918": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription"
+ "qualifiedName": "password"
},
"919": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.id"
+ "qualifiedName": "Subscription"
},
"920": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.callback"
+ "qualifiedName": "Subscription.id"
},
"921": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.callback"
},
"922": {
"sourceFileName": "src/lib/types.ts",
@@ -35825,19 +35865,19 @@
},
"923": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type"
},
"924": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "session"
+ "qualifiedName": "event"
},
"925": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.unsubscribe"
+ "qualifiedName": "session"
},
"926": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.unsubscribe"
},
"927": {
"sourceFileName": "src/lib/types.ts",
@@ -35845,251 +35885,251 @@
},
"928": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInAnonymouslyCredentials"
+ "qualifiedName": "__type"
},
"929": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInAnonymouslyCredentials"
},
"930": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"931": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"932": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"933": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"934": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignUpWithPasswordCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"935": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignUpWithPasswordCredentials"
},
"936": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"937": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"938": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"939": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.emailRedirectTo"
},
"940": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"941": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.captchaToken"
},
"942": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordCredentials"
+ "qualifiedName": "__type.channel"
},
"943": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithPasswordCredentials"
},
"944": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"945": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"946": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"947": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordlessCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"948": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithPasswordlessCredentials"
},
"949": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"950": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"951": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"952": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"953": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type.emailRedirectTo"
},
"954": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.shouldCreateUser"
},
"955": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"956": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"957": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type"
},
"958": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"959": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"960": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type"
},
"961": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.shouldCreateUser"
},
"962": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"963": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.captchaToken"
},
"964": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthFlowType"
+ "qualifiedName": "__type.channel"
},
"965": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithOAuthCredentials"
+ "qualifiedName": "AuthFlowType"
},
"966": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithOAuthCredentials"
},
"967": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"968": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.provider"
},
"969": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"970": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"971": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type.redirectTo"
},
"972": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.queryParams"
+ "qualifiedName": "__type.scopes"
},
"973": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.queryParams"
},
"974": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "976": {
+ "975": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.__index"
},
"977": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithIdTokenCredentials"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"978": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithIdTokenCredentials"
},
"979": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"980": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.provider"
},
"981": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token"
+ "qualifiedName": "__type"
},
"982": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type.token"
},
"983": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nonce"
+ "qualifiedName": "__type.access_token"
},
"984": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.nonce"
},
"985": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"986": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"987": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWallet"
+ "qualifiedName": "__type.captchaToken"
},
"988": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWallet"
},
"989": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signIn"
+ "qualifiedName": "__type"
},
"990": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signIn"
},
"991": {
"sourceFileName": "src/lib/types.ts",
@@ -36097,23 +36137,23 @@
},
"992": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "inputs"
+ "qualifiedName": "__type"
},
"993": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "inputs"
},
"994": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"995": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.toBase58"
+ "qualifiedName": "__type"
},
"996": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.toBase58"
},
"997": {
"sourceFileName": "src/lib/types.ts",
@@ -36121,11 +36161,11 @@
},
"998": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signMessage"
+ "qualifiedName": "__type"
},
"999": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signMessage"
},
"1000": {
"sourceFileName": "src/lib/types.ts",
@@ -36133,707 +36173,707 @@
},
"1001": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "message"
+ "qualifiedName": "__type"
},
"1002": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "encoding"
+ "qualifiedName": "message"
},
"1003": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWeb3Credentials"
+ "qualifiedName": "encoding"
},
"1004": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWeb3Credentials"
},
"1005": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1006": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.chain"
},
"1007": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.wallet"
},
"1008": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.statement"
},
"1009": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1010": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"1011": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.url"
},
"1012": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithSolana"
+ "qualifiedName": "__type.captchaToken"
},
"1013": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signInWithSolana"
},
"1014": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1015": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.chain"
},
"1016": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.message"
},
"1017": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.signature"
},
"1018": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1019": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1020": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWallet"
+ "qualifiedName": "__type.captchaToken"
},
"1021": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWeb3Credentials"
+ "qualifiedName": "EthereumWallet"
},
"1022": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EthereumWeb3Credentials"
},
"1023": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1024": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.chain"
},
"1025": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.wallet"
},
"1026": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.statement"
},
"1027": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1028": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"1029": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.url"
},
"1030": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithEthereum"
+ "qualifiedName": "__type.captchaToken"
},
"1031": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signInWithEthereum"
},
"1032": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1033": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.chain"
},
"1034": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.message"
},
"1035": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.signature"
},
"1036": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1037": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1038": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Web3Credentials"
+ "qualifiedName": "__type.captchaToken"
},
"1039": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyOtpParams"
+ "qualifiedName": "Web3Credentials"
},
"1040": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams"
+ "qualifiedName": "VerifyOtpParams"
},
"1041": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.phone"
+ "qualifiedName": "VerifyMobileOtpParams"
},
"1042": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.token"
+ "qualifiedName": "VerifyMobileOtpParams.phone"
},
"1043": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.type"
+ "qualifiedName": "VerifyMobileOtpParams.token"
},
"1044": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.options"
+ "qualifiedName": "VerifyMobileOtpParams.type"
},
"1045": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyMobileOtpParams.options"
},
"1046": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1047": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1048": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams"
+ "qualifiedName": "__type.captchaToken"
},
"1049": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.email"
+ "qualifiedName": "VerifyEmailOtpParams"
},
"1050": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.token"
+ "qualifiedName": "VerifyEmailOtpParams.email"
},
"1051": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.type"
+ "qualifiedName": "VerifyEmailOtpParams.token"
},
"1052": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.options"
+ "qualifiedName": "VerifyEmailOtpParams.type"
},
"1053": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyEmailOtpParams.options"
},
"1054": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1055": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1056": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams"
+ "qualifiedName": "__type.captchaToken"
},
"1057": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.token_hash"
+ "qualifiedName": "VerifyTokenHashParams"
},
"1058": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.type"
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
},
"1059": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MobileOtpType"
+ "qualifiedName": "VerifyTokenHashParams.type"
},
"1060": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EmailOtpType"
+ "qualifiedName": "MobileOtpType"
},
"1061": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "ResendParams"
+ "qualifiedName": "EmailOtpType"
},
"1062": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "ResendParams"
},
"1063": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1064": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1065": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1066": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1067": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"1068": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.emailRedirectTo"
},
"1069": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1070": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1071": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.type"
},
"1072": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"1073": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1074": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1075": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithSSO"
+ "qualifiedName": "__type.captchaToken"
},
"1076": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithSSO"
},
"1077": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.providerId"
+ "qualifiedName": "__type"
},
"1078": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.providerId"
},
"1079": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1080": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1081": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1082": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.captchaToken"
},
"1083": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1084": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.domain"
+ "qualifiedName": "__type"
},
"1085": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.domain"
},
"1086": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1087": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1088": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1089": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.captchaToken"
},
"1090": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateSignupLinkParams"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1091": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateSignupLinkParams"
},
"1092": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1093": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1094": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.password"
+ "qualifiedName": "__type.email"
},
"1095": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.password"
},
"1096": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ "qualifiedName": "__type.options"
},
"1097": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
},
"1098": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1099": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1100": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1101": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateRecoveryLinkParams"
+ "qualifiedName": "__type.options"
},
"1102": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateRecoveryLinkParams"
},
"1103": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1104": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1105": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1106": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateEmailChangeLinkParams"
+ "qualifiedName": "__type.options"
},
"1107": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateEmailChangeLinkParams"
},
"1108": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1109": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1110": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.newEmail"
+ "qualifiedName": "__type.email"
},
"1111": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.newEmail"
},
"1112": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions"
+ "qualifiedName": "__type.options"
},
"1113": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.data"
+ "qualifiedName": "GenerateLinkOptions"
},
"1114": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.redirectTo"
+ "qualifiedName": "GenerateLinkOptions.data"
},
"1115": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkParams"
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
},
"1116": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkResponse"
+ "qualifiedName": "GenerateLinkParams"
},
"1117": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkResponse"
},
"1118": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.properties"
+ "qualifiedName": "__type"
},
"1119": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.properties"
},
"1120": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkProperties"
+ "qualifiedName": "__type.user"
},
"1121": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkProperties"
},
"1122": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.action_link"
+ "qualifiedName": "__type"
},
"1123": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email_otp"
+ "qualifiedName": "__type.action_link"
},
"1124": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.hashed_token"
+ "qualifiedName": "__type.email_otp"
},
"1125": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_to"
+ "qualifiedName": "__type.hashed_token"
},
"1126": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.verification_type"
+ "qualifiedName": "__type.redirect_to"
},
"1127": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkType"
+ "qualifiedName": "__type.verification_type"
},
"1128": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollParams"
+ "qualifiedName": "GenerateLinkType"
},
"1129": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAUnenrollParams"
+ "qualifiedName": "MFAEnrollParams"
},
"1130": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAUnenrollParams"
},
"1131": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factorId"
+ "qualifiedName": "__type"
},
"1132": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyTOTPParams"
+ "qualifiedName": "__type.factorId"
},
"1133": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyPhoneParams"
+ "qualifiedName": "MFAVerifyTOTPParams"
},
"1134": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFields"
+ "qualifiedName": "MFAVerifyPhoneParams"
},
"1135": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
},
"1136": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.webauthn"
+ "qualifiedName": "__type"
},
"1137": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.webauthn"
},
"1138": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParams"
+ "qualifiedName": "T"
},
"1139": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "MFAVerifyWebauthnParams"
},
"1140": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyParams"
+ "qualifiedName": "T"
},
"1141": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFATOTPChannel"
+ "qualifiedName": "MFAVerifyParams"
},
"1142": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeTOTPParams"
+ "qualifiedName": "MFATOTPChannel"
},
"1143": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengePhoneParams"
+ "qualifiedName": "MFAChallengeTOTPParams"
},
"1144": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeWebauthnParams"
+ "qualifiedName": "MFAChallengePhoneParams"
},
"1145": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeParams"
+ "qualifiedName": "MFAChallengeWebauthnParams"
},
"1146": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeAndVerifyParams"
+ "qualifiedName": "MFAChallengeParams"
},
"1147": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponseData"
+ "qualifiedName": "MFAChallengeAndVerifyParams"
},
"1148": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAVerifyResponseData"
},
"1149": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type"
},
"1150": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_type"
+ "qualifiedName": "__type.access_token"
},
"1151": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.expires_in"
+ "qualifiedName": "__type.token_type"
},
"1152": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.refresh_token"
+ "qualifiedName": "__type.expires_in"
},
"1153": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.refresh_token"
},
"1154": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponse"
+ "qualifiedName": "__type.user"
},
"1155": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollResponse"
+ "qualifiedName": "AuthMFAVerifyResponse"
},
"1156": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAUnenrollResponse"
+ "qualifiedName": "AuthMFAEnrollResponse"
},
"1157": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAUnenrollResponse"
},
"1158": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1159": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ "qualifiedName": "__type.id"
},
"1160": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengePhoneResponse"
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
},
"1161": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
},
"1162": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
"1163": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
"1164": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
"1165": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAListFactorsResponse"
+ "qualifiedName": "AuthMFAChallengeResponse"
},
"1166": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAListFactorsResponse"
},
"1167": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.all"
+ "qualifiedName": "__type"
},
"1168": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.all"
},
"1169": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthenticatorAssuranceLevels"
+ "qualifiedName": "T"
},
"1170": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ "qualifiedName": "AuthenticatorAssuranceLevels"
},
"1171": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
"1172": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentLevel"
+ "qualifiedName": "__type"
},
"1173": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextLevel"
+ "qualifiedName": "__type.currentLevel"
},
"1174": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentAuthenticationMethods"
+ "qualifiedName": "__type.nextLevel"
},
"1175": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi"
+ "qualifiedName": "__type.currentAuthenticationMethods"
},
"1176": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "GoTrueMFAApi"
},
"1177": {
"sourceFileName": "src/lib/types.ts",
@@ -36841,79 +36881,79 @@
},
"1178": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1179": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1180": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1181": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1182": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "issuer"
+ "qualifiedName": "friendlyName"
},
"1183": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "issuer"
},
"1184": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1185": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1186": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1187": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1188": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "friendlyName"
},
"1189": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "phone"
},
"1190": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1191": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1192": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1193": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1194": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1195": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1196": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "params"
},
"1197": {
"sourceFileName": "src/lib/types.ts",
@@ -36921,243 +36961,243 @@
},
"1198": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1199": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1200": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1201": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1202": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1203": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1204": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1205": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1206": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1207": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1208": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1209": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1210": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "expires_at"
},
"1211": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1212": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1213": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1214": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1215": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "factorId"
},
"1216": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "channel"
},
"1217": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1218": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1219": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1220": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1221": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1222": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1223": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1224": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1225": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "expires_at"
},
"1226": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1227": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1228": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1229": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1230": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "factorId"
},
"1231": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1232": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpId"
+ "qualifiedName": "__type"
},
"1233": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpOrigins"
+ "qualifiedName": "__type.rpId"
},
"1234": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.rpOrigins"
},
"1235": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1236": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1237": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1238": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1239": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1240": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1241": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1242": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1243": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "expires_at"
},
"1244": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1245": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1246": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type.type"
},
"1247": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.credential_options"
},
"1248": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"1249": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"1250": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1251": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type.type"
},
"1252": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.credential_options"
},
"1253": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"1254": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type.publicKey"
},
"1255": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1256": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1257": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "params"
},
"1258": {
"sourceFileName": "src/lib/types.ts",
@@ -37165,83 +37205,83 @@
},
"1259": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1260": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1261": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1262": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1263": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1264": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1265": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1266": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1267": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1268": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1269": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1270": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1271": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1272": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1273": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1274": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1275": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "challengeId"
},
"1276": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "webauthn"
},
"1277": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1278": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "params"
},
"1279": {
"sourceFileName": "src/lib/types.ts",
@@ -37249,11 +37289,11 @@
},
"1280": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1281": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "params"
},
"1282": {
"sourceFileName": "src/lib/types.ts",
@@ -37261,23 +37301,23 @@
},
"1283": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1284": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1285": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1286": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "factorId"
},
"1287": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "code"
},
"1288": {
"sourceFileName": "src/lib/types.ts",
@@ -37285,7 +37325,7 @@
},
"1289": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1290": {
"sourceFileName": "src/lib/types.ts",
@@ -37293,71 +37333,71 @@
},
"1291": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "jwt"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1292": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.webauthn"
+ "qualifiedName": "jwt"
},
"1293": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ "qualifiedName": "GoTrueMFAApi.webauthn"
},
"1294": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
"1295": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1296": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ "qualifiedName": "__type.id"
},
"1297": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
"1298": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1299": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type.id"
},
"1300": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ "qualifiedName": "__type.userId"
},
"1301": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
},
"1302": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factors"
+ "qualifiedName": "__type"
},
"1303": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsParams"
+ "qualifiedName": "__type.factors"
},
"1304": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
},
"1305": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type"
},
"1306": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi"
+ "qualifiedName": "__type.userId"
},
"1307": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "GoTrueAdminMFAApi"
},
"1308": {
"sourceFileName": "src/lib/types.ts",
@@ -37365,11 +37405,11 @@
},
"1309": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1310": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "params"
},
"1311": {
"sourceFileName": "src/lib/types.ts",
@@ -37377,479 +37417,479 @@
},
"1312": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1313": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupportedStorage"
+ "qualifiedName": "params"
},
"1314": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SupportedStorage"
},
"1315": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.isServer"
+ "qualifiedName": "__type"
},
"1316": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "InitializeResult"
+ "qualifiedName": "__type.isServer"
},
"1317": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "InitializeResult"
},
"1318": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type"
},
"1319": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CallRefreshTokenResult"
+ "qualifiedName": "__type.error"
},
"1320": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Pagination"
+ "qualifiedName": "CallRefreshTokenResult"
},
"1321": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Pagination"
},
"1322": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextPage"
+ "qualifiedName": "__type"
},
"1323": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.lastPage"
+ "qualifiedName": "__type.nextPage"
},
"1324": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.total"
+ "qualifiedName": "__type.lastPage"
},
"1325": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.total"
+ },
+ "1326": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "1327": {
+ "1328": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "PageParams"
},
- "1328": {
+ "1329": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1329": {
+ "1330": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.page"
},
- "1330": {
+ "1331": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.perPage"
},
- "1331": {
+ "1332": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignOut"
},
- "1332": {
+ "1333": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1333": {
+ "1334": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.scope"
},
- "1334": {
+ "1335": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollTOTPParams"
},
- "1335": {
+ "1336": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollPhoneParams"
},
- "1336": {
+ "1337": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollWebauthnParams"
},
- "1337": {
+ "1338": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollTOTPResponse"
},
- "1338": {
+ "1339": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollPhoneResponse"
},
- "1339": {
+ "1340": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
- "1340": {
+ "1341": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtHeader"
},
- "1341": {
+ "1342": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1342": {
+ "1343": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.alg"
},
- "1343": {
+ "1344": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.kid"
},
- "1344": {
+ "1345": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.typ"
},
- "1345": {
+ "1346": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequiredClaims"
},
- "1346": {
+ "1347": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1347": {
+ "1348": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1348": {
+ "1349": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1349": {
+ "1350": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1350": {
+ "1351": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1351": {
+ "1352": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1352": {
+ "1353": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1353": {
+ "1354": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1354": {
+ "1355": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1355": {
+ "1356": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload"
},
- "1356": {
+ "1357": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.email"
},
- "1357": {
+ "1358": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.phone"
},
- "1358": {
+ "1359": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.is_anonymous"
},
- "1359": {
+ "1360": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.jti"
},
- "1360": {
+ "1361": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.nbf"
},
- "1361": {
+ "1362": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.app_metadata"
},
- "1362": {
+ "1363": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.user_metadata"
},
- "1363": {
+ "1364": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.amr"
},
- "1364": {
+ "1365": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.ref"
},
- "1365": {
+ "1366": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1366": {
+ "1367": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1367": {
+ "1368": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1368": {
+ "1369": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1369": {
+ "1370": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1370": {
+ "1371": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1371": {
+ "1372": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1372": {
+ "1373": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1373": {
+ "1374": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload.__index"
},
- "1375": {
+ "1376": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK"
},
- "1376": {
+ "1377": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.kty"
},
- "1377": {
+ "1378": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.key_ops"
},
- "1378": {
+ "1379": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.alg"
},
- "1379": {
+ "1380": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.kid"
},
- "1380": {
+ "1381": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.__index"
},
- "1382": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SIGN_OUT_SCOPES"
- },
"1383": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignOutScope"
+ "qualifiedName": "SIGN_OUT_SCOPES"
},
"1384": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientGrantType"
+ "qualifiedName": "SignOutScope"
},
"1385": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponseType"
+ "qualifiedName": "OAuthClientGrantType"
},
"1386": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientType"
+ "qualifiedName": "OAuthClientResponseType"
},
"1387": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientRegistrationType"
+ "qualifiedName": "OAuthClientType"
},
"1388": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClient"
+ "qualifiedName": "OAuthClientRegistrationType"
},
"1389": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClient"
},
"1390": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "__type"
},
"1391": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.client_id"
},
"1392": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_secret"
+ "qualifiedName": "__type.client_name"
},
"1393": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "__type.client_secret"
},
"1394": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "__type.client_type"
},
"1395": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "__type.token_endpoint_auth_method"
},
"1396": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.registration_type"
},
"1397": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_uri"
},
"1398": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.logo_uri"
},
"1399": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1400": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.grant_types"
},
"1401": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.response_types"
},
"1402": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "__type.scope"
},
"1403": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "__type.created_at"
},
"1404": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "__type.updated_at"
},
"1405": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "CreateOAuthClientParams"
},
"1406": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1407": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.client_name"
},
"1408": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
"1409": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1410": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.grant_types"
},
"1411": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.response_types"
},
"1412": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UpdateOAuthClientParams"
+ "qualifiedName": "__type.scope"
},
"1413": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UpdateOAuthClientParams"
},
"1414": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1415": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.client_name"
},
"1416": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_uri"
},
"1417": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.logo_uri"
},
"1418": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1419": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "__type.grant_types"
},
"1420": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "OAuthClientResponse"
},
"1421": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientListResponse"
},
"1422": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1423": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1424": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1425": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.clients"
},
"1426": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.aud"
},
"1427": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"1428": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1429": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1430": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1431": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.clients"
},
"1432": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "__type.error"
},
"1433": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "GoTrueAdminOAuthApi"
},
"1434": {
"sourceFileName": "src/lib/types.ts",
@@ -37857,11 +37897,11 @@
},
"1435": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1436": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "params"
},
"1437": {
"sourceFileName": "src/lib/types.ts",
@@ -37869,11 +37909,11 @@
},
"1438": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1439": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "params"
},
"1440": {
"sourceFileName": "src/lib/types.ts",
@@ -37881,11 +37921,11 @@
},
"1441": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1442": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "clientId"
},
"1443": {
"sourceFileName": "src/lib/types.ts",
@@ -37893,15 +37933,15 @@
},
"1444": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1445": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "clientId"
},
"1446": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "params"
},
"1447": {
"sourceFileName": "src/lib/types.ts",
@@ -37909,23 +37949,23 @@
},
"1448": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1449": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "clientId"
},
"1450": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1451": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"1452": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type.error"
},
"1453": {
"sourceFileName": "src/lib/types.ts",
@@ -37933,131 +37973,131 @@
},
"1454": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1455": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationClient"
+ "qualifiedName": "clientId"
},
"1456": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationClient"
},
"1457": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1458": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.name"
+ "qualifiedName": "__type.id"
},
"1459": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.uri"
+ "qualifiedName": "__type.name"
},
"1460": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.uri"
},
"1461": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationDetails"
+ "qualifiedName": "__type.logo_uri"
},
"1462": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
"1463": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.authorization_id"
+ "qualifiedName": "__type"
},
"1464": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uri"
+ "qualifiedName": "__type.authorization_id"
},
"1465": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type.redirect_uri"
},
"1466": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.client"
},
"1467": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.user"
},
"1468": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1469": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.id"
},
"1470": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.email"
},
"1471": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthRedirect"
+ "qualifiedName": "__type.scope"
},
"1472": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthRedirect"
},
"1473": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_url"
+ "qualifiedName": "__type"
},
"1474": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ "qualifiedName": "__type.redirect_url"
},
"1475": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthConsentResponse"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
"1476": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthGrant"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
"1477": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthGrant"
},
"1478": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type"
},
"1479": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type.client"
},
"1480": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.granted_at"
+ "qualifiedName": "__type.scopes"
},
"1481": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthGrantsResponse"
+ "qualifiedName": "__type.granted_at"
},
"1482": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthRevokeGrantResponse"
+ "qualifiedName": "AuthOAuthGrantsResponse"
},
"1483": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthRevokeGrantResponse"
},
"1484": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi"
+ "qualifiedName": "__type"
},
"1485": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "AuthOAuthServerApi"
},
"1486": {
"sourceFileName": "src/lib/types.ts",
@@ -38065,11 +38105,11 @@
},
"1487": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
"1488": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "authorizationId"
},
"1489": {
"sourceFileName": "src/lib/types.ts",
@@ -38077,23 +38117,23 @@
},
"1490": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
"1491": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1492": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1493": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1494": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1495": {
"sourceFileName": "src/lib/types.ts",
@@ -38101,23 +38141,23 @@
},
"1496": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
},
"1497": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1498": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1499": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1500": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.listGrants"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1501": {
"sourceFileName": "src/lib/types.ts",
@@ -38125,7 +38165,7 @@
},
"1502": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
},
"1503": {
"sourceFileName": "src/lib/types.ts",
@@ -38133,19 +38173,19 @@
},
"1504": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
},
"1505": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1506": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clientId"
+ "qualifiedName": "__type"
},
"1507": {
- "sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthError"
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.clientId"
},
"1508": {
"sourceFileName": "src/lib/errors.ts",
@@ -38153,11 +38193,11 @@
},
"1509": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthError"
},
"1510": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthApiError"
+ "qualifiedName": "error"
},
"1511": {
"sourceFileName": "src/lib/errors.ts",
@@ -38165,11 +38205,11 @@
},
"1512": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthApiError"
},
"1513": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthSessionMissingError"
+ "qualifiedName": "error"
},
"1514": {
"sourceFileName": "src/lib/errors.ts",
@@ -38177,11 +38217,11 @@
},
"1515": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthSessionMissingError"
},
"1516": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthImplicitGrantRedirectError"
+ "qualifiedName": "error"
},
"1517": {
"sourceFileName": "src/lib/errors.ts",
@@ -38189,11 +38229,11 @@
},
"1518": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthImplicitGrantRedirectError"
},
"1519": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthPKCECodeVerifierMissingError"
+ "qualifiedName": "error"
},
"1520": {
"sourceFileName": "src/lib/errors.ts",
@@ -38201,11 +38241,11 @@
},
"1521": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthPKCECodeVerifierMissingError"
},
"1522": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthRetryableFetchError"
+ "qualifiedName": "error"
},
"1523": {
"sourceFileName": "src/lib/errors.ts",
@@ -38213,11 +38253,11 @@
},
"1524": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthRetryableFetchError"
},
"1525": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "isAuthWeakPasswordError"
+ "qualifiedName": "error"
},
"1526": {
"sourceFileName": "src/lib/errors.ts",
@@ -38225,593 +38265,597 @@
},
"1527": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthWeakPasswordError"
},
"1528": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError"
+ "qualifiedName": "error"
},
"1529": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError.__constructor"
+ "qualifiedName": "AuthError"
},
"1530": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError"
+ "qualifiedName": "AuthError.__constructor"
},
"1531": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "message"
+ "qualifiedName": "AuthError"
},
"1532": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "status"
+ "qualifiedName": "message"
},
"1533": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "code"
+ "qualifiedName": "status"
},
"1534": {
"sourceFileName": "src/lib/errors.ts",
- "qualifiedName": "AuthError.code"
+ "qualifiedName": "code"
},
"1535": {
+ "sourceFileName": "src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1536": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1536": {
+ "1537": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1538": {
+ "1539": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1539": {
+ "1540": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1540": {
+ "1541": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1541": {
+ "1542": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1542": {
+ "1543": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1543": {
+ "1544": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1544": {
+ "1545": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1545": {
+ "1546": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1546": {
+ "1547": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1548": {
+ "1549": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1549": {
+ "1550": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1550": {
+ "1551": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1551": {
+ "1552": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1552": {
+ "1553": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1553": {
+ "1554": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1554": {
+ "1555": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1555": {
+ "1556": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1556": {
+ "1557": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1558": {
+ "1559": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1559": {
+ "1560": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1560": {
+ "1561": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1561": {
+ "1562": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1562": {
+ "1563": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "name"
},
- "1563": {
+ "1564": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1564": {
+ "1565": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1565": {
+ "1566": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1566": {
+ "1567": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1567": {
+ "1568": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1568": {
+ "1569": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1570": {
+ "1571": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1571": {
+ "1572": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1572": {
+ "1573": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1573": {
+ "1574": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1574": {
+ "1575": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1575": {
+ "1576": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1576": {
+ "1577": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1578": {
+ "1579": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1579": {
+ "1580": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1580": {
+ "1581": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1581": {
+ "1582": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1582": {
+ "1583": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1583": {
+ "1584": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1584": {
+ "1585": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1586": {
+ "1587": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1587": {
+ "1588": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1588": {
+ "1589": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1589": {
+ "1590": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1590": {
+ "1591": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1591": {
+ "1592": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1592": {
+ "1593": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1593": {
+ "1594": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1595": {
+ "1596": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1596": {
+ "1597": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1597": {
+ "1598": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1598": {
+ "1599": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1599": {
+ "1600": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1600": {
+ "1601": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1601": {
+ "1602": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1602": {
+ "1603": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1603": {
+ "1604": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1604": {
+ "1605": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1605": {
+ "1606": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1606": {
+ "1607": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1607": {
+ "1608": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1608": {
+ "1609": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1609": {
+ "1610": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1610": {
+ "1611": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1611": {
+ "1612": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1612": {
+ "1613": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1613": {
+ "1614": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1614": {
+ "1615": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1615": {
+ "1616": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1616": {
+ "1617": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1617": {
+ "1618": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1618": {
+ "1619": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1619": {
+ "1620": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1620": {
+ "1621": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1622": {
+ "1623": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1623": {
+ "1624": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1624": {
+ "1625": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1625": {
+ "1626": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1626": {
+ "1627": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1627": {
+ "1628": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1628": {
+ "1629": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1629": {
+ "1630": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1630": {
+ "1631": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1631": {
+ "1632": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1632": {
+ "1633": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1633": {
+ "1634": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1634": {
+ "1635": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1635": {
+ "1636": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1636": {
+ "1637": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1637": {
+ "1638": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1638": {
+ "1639": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1639": {
+ "1640": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1640": {
+ "1641": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1641": {
+ "1642": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1642": {
+ "1643": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1643": {
+ "1644": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1644": {
+ "1645": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1645": {
+ "1646": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1646": {
+ "1647": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1647": {
+ "1648": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1649": {
+ "1650": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError"
},
- "1650": {
+ "1651": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError.__constructor"
},
- "1651": {
+ "1652": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError"
},
- "1652": {
+ "1653": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1653": {
+ "1654": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1654": {
+ "1655": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1655": {
+ "1656": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1657": {
+ "1658": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1658": {
+ "1659": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1659": {
+ "1660": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1660": {
+ "1661": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1661": {
+ "1662": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1662": {
+ "1663": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1663": {
+ "1664": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1664": {
+ "1665": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1665": {
+ "1666": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1667": {
+ "1668": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1668": {
+ "1669": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1669": {
+ "1670": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1670": {
+ "1671": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1671": {
+ "1672": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1672": {
+ "1673": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1673": {
+ "1674": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1674": {
+ "1675": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1675": {
+ "1676": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1676": {
+ "1677": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1677": {
+ "1678": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1679": {
+ "1680": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1680": {
+ "1681": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1681": {
+ "1682": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1682": {
+ "1683": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1683": {
+ "1684": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1684": {
+ "1685": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1685": {
+ "1686": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1686": {
+ "1687": {
"sourceFileName": "",
"qualifiedName": "__type"
}
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json b/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json
index 1660b9cbe6ef3..88eb05ca35c08 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": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"signatures": [
@@ -59,7 +59,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"typeParameters": [
@@ -128,7 +128,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -149,7 +149,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -376,7 +376,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -402,7 +402,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 54,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
}
],
"type": {
@@ -421,7 +421,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -463,7 +463,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -484,7 +484,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -505,7 +505,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -529,7 +529,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -555,7 +555,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 55,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
}
],
"type": {
@@ -575,7 +575,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
]
}
@@ -632,7 +632,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -653,7 +653,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -882,7 +882,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -908,7 +908,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -929,7 +929,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -972,7 +972,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -993,7 +993,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -1016,7 +1016,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -1042,7 +1042,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -1068,7 +1068,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -1087,7 +1087,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"signatures": [
@@ -1138,7 +1138,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"typeParameters": [
@@ -1193,7 +1193,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -1213,7 +1213,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -1238,7 +1238,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -1258,7 +1258,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -1483,7 +1483,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
}
],
"signatures": [
@@ -1525,7 +1525,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
}
],
"typeParameters": [
@@ -1610,7 +1610,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"signatures": [
@@ -1633,7 +1633,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"parameters": [
@@ -1678,7 +1678,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"signatures": [
@@ -1712,7 +1712,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"typeParameters": [
@@ -1819,7 +1819,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"signatures": [
@@ -1834,7 +1834,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"parameters": [
@@ -1966,7 +1966,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"signatures": [
@@ -1981,7 +1981,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"parameters": [
@@ -2089,7 +2089,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"signatures": [
@@ -2118,7 +2118,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"type": {
@@ -2211,7 +2211,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 12,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
}
],
"typeParameters": [
@@ -2345,7 +2345,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
}
],
"signatures": [
@@ -2379,7 +2379,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
}
],
"typeParameters": [
@@ -2436,7 +2436,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -2462,7 +2462,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -2716,7 +2716,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 76,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L76"
}
],
"type": {
@@ -2953,7 +2953,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 74,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L74"
}
],
"type": {
@@ -2988,7 +2988,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 75,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L75"
}
],
"type": {
@@ -3021,7 +3021,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 77,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L77"
}
],
"type": {
@@ -3050,7 +3050,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 78,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
}
],
"type": {
@@ -3071,7 +3071,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 73,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L73"
}
]
}
@@ -3136,7 +3136,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
}
],
"type": {
@@ -3363,7 +3363,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
}
],
"type": {
@@ -3389,7 +3389,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
}
],
"type": {
@@ -3412,7 +3412,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
}
],
"type": {
@@ -3431,7 +3431,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L41"
}
],
"type": {
@@ -3470,19 +3470,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L140"
}
],
"signatures": [
@@ -3497,7 +3497,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
}
],
"typeParameters": [
@@ -3596,7 +3596,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
}
],
"typeParameters": [
@@ -3697,7 +3697,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
}
],
"signatures": [
@@ -3731,7 +3731,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
}
],
"typeParameters": [
@@ -3957,7 +3957,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 229,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L229"
}
],
"type": {
@@ -4007,7 +4007,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 228,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L228"
}
],
"type": {
@@ -4053,7 +4053,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 227,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L227"
}
],
"type": {
@@ -4074,7 +4074,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 226,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L226"
}
]
}
@@ -4181,7 +4181,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
}
],
"signatures": [
@@ -4204,7 +4204,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
}
],
"typeParameters": [
@@ -4344,7 +4344,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 16,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
}
],
"typeParameters": [
@@ -4409,7 +4409,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -4435,7 +4435,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -4463,7 +4463,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 22,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
}
]
}
@@ -4737,7 +4737,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"signatures": [
@@ -4766,7 +4766,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"parameters": [
@@ -4796,7 +4796,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 73,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4815,7 +4815,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4834,7 +4834,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4853,7 +4853,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4873,7 +4873,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
]
}
@@ -4911,7 +4911,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L9"
}
],
"type": {
@@ -4930,7 +4930,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L7"
}
],
"type": {
@@ -4949,7 +4949,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L8"
}
],
"type": {
@@ -4973,7 +4973,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 6,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L6"
}
],
"extendedTypes": [
@@ -5006,7 +5006,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"signatures": [
@@ -5040,7 +5040,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"typeParameters": [
@@ -5169,7 +5169,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -5190,7 +5190,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -5417,7 +5417,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -5443,7 +5443,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 54,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
}
],
"type": {
@@ -5462,7 +5462,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -5504,7 +5504,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -5525,7 +5525,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -5546,7 +5546,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -5570,7 +5570,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -5596,7 +5596,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 55,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
}
],
"type": {
@@ -5616,7 +5616,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
]
}
@@ -5716,7 +5716,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -5743,7 +5743,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -5978,7 +5978,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -6010,7 +6010,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -6037,7 +6037,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -6086,7 +6086,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -6113,7 +6113,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -6142,7 +6142,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -6174,7 +6174,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -6206,7 +6206,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -6232,7 +6232,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -6257,7 +6257,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -6360,19 +6360,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 437,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449"
}
],
"signatures": [
@@ -6387,7 +6387,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 437,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
}
],
"typeParameters": [
@@ -6495,7 +6495,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
}
],
"parameters": [
@@ -6621,19 +6621,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 414,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 422,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L422"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L422"
}
],
"signatures": [
@@ -6648,7 +6648,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
}
],
"typeParameters": [
@@ -6756,7 +6756,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 414,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
}
],
"parameters": [
@@ -6838,7 +6838,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -6871,7 +6871,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -6919,7 +6919,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
}
],
"signatures": [
@@ -6974,7 +6974,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
}
],
"typeParameters": [
@@ -7172,7 +7172,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -7205,7 +7205,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -7261,7 +7261,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -7299,7 +7299,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -7341,7 +7341,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -7388,7 +7388,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -7434,7 +7434,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -7472,7 +7472,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -7493,7 +7493,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -7654,19 +7654,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 664,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L683"
}
],
"signatures": [
@@ -7681,7 +7681,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 664,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
}
],
"typeParameters": [
@@ -7861,7 +7861,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
}
],
"parameters": [
@@ -7919,7 +7919,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -7952,7 +7952,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -8061,19 +8061,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L145"
}
],
"signatures": [
@@ -8088,7 +8088,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
}
],
"typeParameters": [
@@ -8161,7 +8161,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
}
],
"parameters": [
@@ -8252,19 +8252,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 150,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 158,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158"
}
],
"signatures": [
@@ -8279,7 +8279,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 150,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
}
],
"typeParameters": [
@@ -8352,7 +8352,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
}
],
"parameters": [
@@ -8443,19 +8443,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 234,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L242"
}
],
"signatures": [
@@ -8470,7 +8470,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 234,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
}
],
"typeParameters": [
@@ -8529,7 +8529,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
}
],
"parameters": [
@@ -8620,19 +8620,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L258"
}
],
"signatures": [
@@ -8647,7 +8647,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
}
],
"typeParameters": [
@@ -8713,7 +8713,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
}
],
"parameters": [
@@ -8811,19 +8811,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 263,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L274"
}
],
"signatures": [
@@ -8838,7 +8838,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 263,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
}
],
"typeParameters": [
@@ -8904,7 +8904,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
}
],
"parameters": [
@@ -8956,7 +8956,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
}
],
"signatures": [
@@ -8995,7 +8995,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
}
],
"typeParameters": [
@@ -9283,19 +9283,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 307,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 324,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L324"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L324"
}
],
"signatures": [
@@ -9310,7 +9310,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 307,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
}
],
"typeParameters": [
@@ -9401,7 +9401,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
}
],
"parameters": [
@@ -9455,7 +9455,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
}
],
"signatures": [
@@ -9526,7 +9526,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
}
],
"typeParameters": [
@@ -9751,19 +9751,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L197"
}
],
"signatures": [
@@ -9778,7 +9778,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
}
],
"typeParameters": [
@@ -9837,7 +9837,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
}
],
"parameters": [
@@ -9928,19 +9928,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L213"
}
],
"signatures": [
@@ -9955,7 +9955,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
}
],
"typeParameters": [
@@ -10021,7 +10021,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
}
],
"parameters": [
@@ -10119,19 +10119,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 218,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 222,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L229"
}
],
"signatures": [
@@ -10146,7 +10146,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 218,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
}
],
"typeParameters": [
@@ -10212,7 +10212,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 222,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
}
],
"parameters": [
@@ -10266,7 +10266,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -10299,7 +10299,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -10374,7 +10374,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -10403,7 +10403,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -10424,7 +10424,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -10506,19 +10506,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 171,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L171"
}
],
"signatures": [
@@ -10533,7 +10533,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
}
],
"typeParameters": [
@@ -10606,7 +10606,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
}
],
"parameters": [
@@ -10697,19 +10697,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L184"
}
],
"signatures": [
@@ -10724,7 +10724,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
}
],
"typeParameters": [
@@ -10797,7 +10797,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
}
],
"parameters": [
@@ -10878,19 +10878,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 597,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 598,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 606,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606"
}
],
"signatures": [
@@ -10905,7 +10905,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 597,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
}
],
"typeParameters": [
@@ -10982,7 +10982,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 598,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
}
],
"parameters": [
@@ -11033,7 +11033,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -11058,7 +11058,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -11264,7 +11264,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -11305,7 +11305,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -11412,7 +11412,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
}
],
"signatures": [
@@ -11451,7 +11451,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
}
],
"typeParameters": [
@@ -11686,19 +11686,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 613,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 618,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 632,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L632"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L632"
}
],
"signatures": [
@@ -11713,7 +11713,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 613,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
}
],
"typeParameters": [
@@ -11802,7 +11802,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 618,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
}
],
"parameters": [
@@ -11858,7 +11858,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 388,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
}
],
"signatures": [
@@ -11897,7 +11897,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 388,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
}
],
"typeParameters": [
@@ -12083,7 +12083,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 652,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
}
],
"signatures": [
@@ -12122,7 +12122,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 652,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
}
],
"parameters": [
@@ -12197,7 +12197,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 657,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
}
],
"type": {
@@ -12226,7 +12226,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 657,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
}
],
"type": {
@@ -12247,7 +12247,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 657,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
}
]
}
@@ -12409,31 +12409,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -12450,7 +12450,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -12511,7 +12511,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -12532,7 +12532,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -12553,7 +12553,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -12573,7 +12573,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -12603,7 +12603,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -12648,7 +12648,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12669,7 +12669,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12690,7 +12690,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12710,7 +12710,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -12766,7 +12766,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -12827,7 +12827,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12848,7 +12848,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12869,7 +12869,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12889,7 +12889,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -12945,7 +12945,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -12990,7 +12990,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -13011,7 +13011,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -13032,7 +13032,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -13052,7 +13052,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -13133,19 +13133,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 548,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L548"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L548"
}
],
"signatures": [
@@ -13160,7 +13160,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
}
],
"typeParameters": [
@@ -13249,7 +13249,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
}
],
"parameters": [
@@ -13312,7 +13312,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"signatures": [
@@ -13365,7 +13365,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"typeParameters": [
@@ -13420,7 +13420,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -13440,7 +13440,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -13465,7 +13465,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -13485,7 +13485,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -13718,7 +13718,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -13783,7 +13783,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -13877,7 +13877,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -13906,7 +13906,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -13927,7 +13927,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -14009,19 +14009,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 521,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 531,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531"
}
],
"signatures": [
@@ -14036,7 +14036,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 521,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
}
],
"typeParameters": [
@@ -14095,7 +14095,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
}
],
"parameters": [
@@ -14186,19 +14186,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 463,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 472,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L472"
}
],
"signatures": [
@@ -14213,7 +14213,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 463,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
}
],
"typeParameters": [
@@ -14272,7 +14272,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
}
],
"parameters": [
@@ -14371,19 +14371,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 477,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 487,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L487"
}
],
"signatures": [
@@ -14398,7 +14398,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 477,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
}
],
"typeParameters": [
@@ -14457,7 +14457,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
}
],
"parameters": [
@@ -14548,19 +14548,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 493,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L501"
}
],
"signatures": [
@@ -14575,7 +14575,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
}
],
"typeParameters": [
@@ -14634,7 +14634,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 493,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
}
],
"parameters": [
@@ -14733,19 +14733,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 506,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 507,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 516,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
}
],
"signatures": [
@@ -14760,7 +14760,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 506,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
}
],
"typeParameters": [
@@ -14819,7 +14819,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 507,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
}
],
"parameters": [
@@ -14918,19 +14918,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 294,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 302,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L302"
}
],
"signatures": [
@@ -14945,7 +14945,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
}
],
"typeParameters": [
@@ -15004,7 +15004,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 294,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
}
],
"parameters": [
@@ -15103,19 +15103,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 288,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L288"
}
],
"signatures": [
@@ -15130,7 +15130,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
}
],
"typeParameters": [
@@ -15189,7 +15189,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
}
],
"parameters": [
@@ -15236,7 +15236,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -15280,7 +15280,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -15409,7 +15409,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -15442,7 +15442,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -15475,7 +15475,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -15540,7 +15540,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -15791,7 +15791,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"signatures": [
@@ -15816,7 +15816,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"parameters": [
@@ -15873,7 +15873,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -15914,7 +15914,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -16096,19 +16096,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 559,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 564,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 579,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L579"
}
],
"signatures": [
@@ -16123,7 +16123,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 559,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
}
],
"typeParameters": [
@@ -16195,7 +16195,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 562,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
}
],
"type": {
@@ -16216,7 +16216,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 562,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
}
],
"type": {
@@ -16249,7 +16249,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 562,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
}
]
}
@@ -16272,7 +16272,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 564,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
}
],
"parameters": [
@@ -16328,7 +16328,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 567,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
}
],
"type": {
@@ -16349,7 +16349,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 567,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
}
],
"type": {
@@ -16382,7 +16382,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 567,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
}
]
}
@@ -16409,7 +16409,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"signatures": [
@@ -16445,7 +16445,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"typeParameters": [
@@ -16521,7 +16521,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"signatures": [
@@ -16536,7 +16536,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"parameters": [
@@ -16637,7 +16637,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"signatures": [
@@ -16652,7 +16652,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"parameters": [
@@ -16762,7 +16762,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"signatures": [
@@ -16793,7 +16793,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"type": {
@@ -16932,7 +16932,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 79,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L79"
}
],
"typeParameters": [
@@ -17117,7 +17117,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
}
],
"signatures": [
@@ -17151,7 +17151,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
}
],
"typeParameters": [
@@ -17261,7 +17261,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -17287,7 +17287,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -17354,7 +17354,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 48,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L48"
}
],
"type": {
@@ -17583,7 +17583,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 46,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
}
],
"type": {
@@ -17610,7 +17610,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 47,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L47"
}
],
"type": {
@@ -17631,7 +17631,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 49,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L49"
}
],
"type": {
@@ -17652,7 +17652,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 45,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
}
]
}
@@ -17724,7 +17724,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
}
],
"type": {
@@ -17951,7 +17951,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
}
],
"type": {
@@ -17977,7 +17977,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
}
],
"type": {
@@ -17998,7 +17998,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
}
],
"type": {
@@ -18022,7 +18022,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
}
],
"type": {
@@ -18046,7 +18046,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23"
}
],
"type": {
@@ -18065,7 +18065,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 505,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
}
],
"signatures": [
@@ -18096,7 +18096,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 505,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
}
],
"parameters": [
@@ -18176,7 +18176,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 508,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L508"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L508"
}
],
"type": {
@@ -18209,7 +18209,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 507,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L507"
}
]
}
@@ -18393,19 +18393,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 210,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L210"
}
],
"signatures": [
@@ -18420,7 +18420,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
}
],
"typeParameters": [
@@ -18496,7 +18496,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 158,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L158"
}
],
"type": {
@@ -18529,7 +18529,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 157,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L157"
}
]
}
@@ -18612,7 +18612,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
}
],
"typeParameters": [
@@ -18691,7 +18691,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 172,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L172"
}
],
"type": {
@@ -18725,7 +18725,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 173,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L173"
}
],
"type": {
@@ -18745,7 +18745,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 171,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L171"
}
]
}
@@ -18830,7 +18830,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
}
],
"signatures": [
@@ -18896,7 +18896,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
}
],
"typeParameters": [
@@ -19092,7 +19092,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 108,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L108"
}
],
"type": {
@@ -19150,7 +19150,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 107,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L107"
}
],
"type": {
@@ -19170,7 +19170,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 106,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L106"
}
]
}
@@ -19261,7 +19261,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 452,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
}
],
"signatures": [
@@ -19292,7 +19292,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 452,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
}
],
"typeParameters": [
@@ -19422,7 +19422,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 457,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L457"
}
],
"type": {
@@ -19455,7 +19455,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 456,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L456"
}
]
}
@@ -19751,19 +19751,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 377,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L377"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L377"
}
],
"signatures": [
@@ -19778,7 +19778,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
}
],
"typeParameters": [
@@ -19854,7 +19854,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 263,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L263"
}
],
"type": {
@@ -19888,7 +19888,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 262,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L262"
}
],
"type": {
@@ -19909,7 +19909,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 261,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L261"
}
],
"type": {
@@ -19929,7 +19929,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 260,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L260"
}
]
}
@@ -20012,7 +20012,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
}
],
"typeParameters": [
@@ -20091,7 +20091,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 279,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L279"
}
],
"type": {
@@ -20125,7 +20125,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 280,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L280"
}
],
"type": {
@@ -20146,7 +20146,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 278,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L278"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L278"
}
],
"type": {
@@ -20167,7 +20167,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 277,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L277"
}
],
"type": {
@@ -20187,7 +20187,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 276,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L276"
}
]
}
@@ -20281,7 +20281,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 11,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
}
],
"typeParameters": [
@@ -20391,7 +20391,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -20411,7 +20411,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -20452,7 +20452,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"signatures": [
@@ -20486,7 +20486,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"typeParameters": [
@@ -20615,7 +20615,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -20636,7 +20636,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -20863,7 +20863,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -20889,7 +20889,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 54,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
}
],
"type": {
@@ -20908,7 +20908,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -20950,7 +20950,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -20971,7 +20971,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -20992,7 +20992,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -21016,7 +21016,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -21042,7 +21042,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 55,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
}
],
"type": {
@@ -21062,7 +21062,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
]
}
@@ -21162,7 +21162,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -21189,7 +21189,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -21424,7 +21424,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -21456,7 +21456,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -21483,7 +21483,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -21532,7 +21532,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -21559,7 +21559,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -21588,7 +21588,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -21620,7 +21620,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -21652,7 +21652,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -21676,7 +21676,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -21699,7 +21699,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -21746,7 +21746,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -21777,7 +21777,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -21815,7 +21815,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -21846,7 +21846,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -21902,7 +21902,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -21940,7 +21940,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -21982,7 +21982,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -22029,7 +22029,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -22075,7 +22075,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -22113,7 +22113,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -22134,7 +22134,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -22229,7 +22229,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -22260,7 +22260,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -22313,7 +22313,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -22344,7 +22344,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -22419,7 +22419,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -22448,7 +22448,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -22469,7 +22469,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -22495,7 +22495,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -22518,7 +22518,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -22712,7 +22712,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -22751,7 +22751,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -22982,31 +22982,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -23021,7 +23021,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -23082,7 +23082,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -23103,7 +23103,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -23124,7 +23124,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -23144,7 +23144,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -23167,7 +23167,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -23212,7 +23212,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -23233,7 +23233,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -23254,7 +23254,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -23274,7 +23274,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -23323,7 +23323,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -23384,7 +23384,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -23405,7 +23405,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -23426,7 +23426,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -23446,7 +23446,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -23495,7 +23495,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -23540,7 +23540,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -23561,7 +23561,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -23582,7 +23582,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -23602,7 +23602,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -23629,7 +23629,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"signatures": [
@@ -23682,7 +23682,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"typeParameters": [
@@ -23737,7 +23737,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -23757,7 +23757,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -23782,7 +23782,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -23802,7 +23802,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -24033,7 +24033,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -24096,7 +24096,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -24190,7 +24190,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -24219,7 +24219,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -24240,7 +24240,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -24266,7 +24266,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -24308,7 +24308,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -24435,7 +24435,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -24466,7 +24466,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -24487,7 +24487,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -24550,7 +24550,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -24791,7 +24791,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"signatures": [
@@ -24816,7 +24816,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"parameters": [
@@ -24871,7 +24871,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -24910,7 +24910,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -25000,7 +25000,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"signatures": [
@@ -25036,7 +25036,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"typeParameters": [
@@ -25112,7 +25112,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"signatures": [
@@ -25127,7 +25127,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"parameters": [
@@ -25228,7 +25228,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"signatures": [
@@ -25243,7 +25243,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"parameters": [
@@ -25353,7 +25353,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"signatures": [
@@ -25384,7 +25384,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"type": {
@@ -25521,7 +25521,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
}
],
"typeParameters": [
@@ -25673,7 +25673,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L23"
}
],
"type": {
@@ -25692,7 +25692,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L22"
}
],
"type": {
@@ -25711,7 +25711,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L21"
}
],
"type": {
@@ -25735,7 +25735,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -25761,7 +25761,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -25786,7 +25786,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 20,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L20"
}
],
"extendedTypes": [
@@ -25819,7 +25819,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L18"
}
],
"type": {
@@ -25847,7 +25847,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L17"
}
],
"type": {
@@ -25870,7 +25870,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L16"
}
],
"type": {
@@ -25891,7 +25891,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -25917,7 +25917,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -25942,7 +25942,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 15,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L15"
}
],
"typeParameters": [
@@ -25977,7 +25977,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
],
"type": {
@@ -26002,7 +26002,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/common/common.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/common/common.ts#L55"
}
],
"type": {
@@ -26022,7 +26022,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
]
}
@@ -26039,7 +26039,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L30"
}
],
"typeParameters": [
@@ -26087,7 +26087,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L31"
}
],
"typeParameters": [
@@ -26129,7 +26129,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L29"
}
],
"typeParameters": [
@@ -26187,7 +26187,7 @@
"fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts",
"line": 38,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
}
],
"typeParameters": [
@@ -26772,7 +26772,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 16,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L16"
}
],
"type": {
@@ -26795,7 +26795,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L21"
}
],
"type": {
@@ -26819,7 +26819,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L17"
}
],
"type": {
@@ -26843,7 +26843,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L22"
}
],
"type": {
@@ -26867,7 +26867,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L19"
}
],
"type": {
@@ -26891,7 +26891,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L18"
}
],
"type": {
@@ -26915,7 +26915,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L20"
}
],
"type": {
@@ -26940,7 +26940,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 16,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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 1660b9cbe6ef3..88eb05ca35c08 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": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"signatures": [
@@ -59,7 +59,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"typeParameters": [
@@ -128,7 +128,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -149,7 +149,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -376,7 +376,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -402,7 +402,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 54,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
}
],
"type": {
@@ -421,7 +421,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -463,7 +463,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -484,7 +484,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -505,7 +505,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -529,7 +529,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -555,7 +555,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 55,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
}
],
"type": {
@@ -575,7 +575,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
]
}
@@ -632,7 +632,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -653,7 +653,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -882,7 +882,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -908,7 +908,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -929,7 +929,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -972,7 +972,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -993,7 +993,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -1016,7 +1016,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -1042,7 +1042,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -1068,7 +1068,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -1087,7 +1087,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"signatures": [
@@ -1138,7 +1138,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"typeParameters": [
@@ -1193,7 +1193,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -1213,7 +1213,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -1238,7 +1238,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -1258,7 +1258,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -1483,7 +1483,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
}
],
"signatures": [
@@ -1525,7 +1525,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L304"
}
],
"typeParameters": [
@@ -1610,7 +1610,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"signatures": [
@@ -1633,7 +1633,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"parameters": [
@@ -1678,7 +1678,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"signatures": [
@@ -1712,7 +1712,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"typeParameters": [
@@ -1819,7 +1819,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"signatures": [
@@ -1834,7 +1834,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"parameters": [
@@ -1966,7 +1966,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"signatures": [
@@ -1981,7 +1981,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"parameters": [
@@ -2089,7 +2089,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"signatures": [
@@ -2118,7 +2118,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"type": {
@@ -2211,7 +2211,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 12,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
}
],
"typeParameters": [
@@ -2345,7 +2345,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
}
],
"signatures": [
@@ -2379,7 +2379,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L65"
}
],
"typeParameters": [
@@ -2436,7 +2436,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -2462,7 +2462,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -2716,7 +2716,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 76,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L76"
}
],
"type": {
@@ -2953,7 +2953,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 74,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L74"
}
],
"type": {
@@ -2988,7 +2988,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 75,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L75"
}
],
"type": {
@@ -3021,7 +3021,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 77,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L77"
}
],
"type": {
@@ -3050,7 +3050,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 78,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
}
],
"type": {
@@ -3071,7 +3071,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 73,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L73"
}
]
}
@@ -3136,7 +3136,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
}
],
"type": {
@@ -3363,7 +3363,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
}
],
"type": {
@@ -3389,7 +3389,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
}
],
"type": {
@@ -3412,7 +3412,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
}
],
"type": {
@@ -3431,7 +3431,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 41,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L41"
}
],
"type": {
@@ -3470,19 +3470,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L140"
}
],
"signatures": [
@@ -3497,7 +3497,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L128"
}
],
"typeParameters": [
@@ -3596,7 +3596,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L132"
}
],
"typeParameters": [
@@ -3697,7 +3697,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
}
],
"signatures": [
@@ -3731,7 +3731,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L211"
}
],
"typeParameters": [
@@ -3957,7 +3957,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 229,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L229"
}
],
"type": {
@@ -4007,7 +4007,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 228,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L228"
}
],
"type": {
@@ -4053,7 +4053,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 227,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L227"
}
],
"type": {
@@ -4074,7 +4074,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 226,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L226"
}
]
}
@@ -4181,7 +4181,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
}
],
"signatures": [
@@ -4204,7 +4204,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L163"
}
],
"typeParameters": [
@@ -4344,7 +4344,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 16,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
}
],
"typeParameters": [
@@ -4409,7 +4409,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -4435,7 +4435,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -4463,7 +4463,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 22,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
}
]
}
@@ -4737,7 +4737,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"signatures": [
@@ -4766,7 +4766,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"parameters": [
@@ -4796,7 +4796,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 73,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4815,7 +4815,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4834,7 +4834,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4853,7 +4853,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4873,7 +4873,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
]
}
@@ -4911,7 +4911,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L9"
}
],
"type": {
@@ -4930,7 +4930,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L7"
}
],
"type": {
@@ -4949,7 +4949,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L8"
}
],
"type": {
@@ -4973,7 +4973,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 6,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestError.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestError.ts#L6"
}
],
"extendedTypes": [
@@ -5006,7 +5006,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"signatures": [
@@ -5040,7 +5040,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"typeParameters": [
@@ -5169,7 +5169,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -5190,7 +5190,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -5417,7 +5417,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -5443,7 +5443,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 54,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
}
],
"type": {
@@ -5462,7 +5462,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -5504,7 +5504,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -5525,7 +5525,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -5546,7 +5546,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -5570,7 +5570,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -5596,7 +5596,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 55,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
}
],
"type": {
@@ -5616,7 +5616,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
]
}
@@ -5716,7 +5716,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -5743,7 +5743,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -5978,7 +5978,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -6010,7 +6010,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -6037,7 +6037,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -6086,7 +6086,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -6113,7 +6113,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -6142,7 +6142,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -6174,7 +6174,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -6206,7 +6206,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -6232,7 +6232,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -6257,7 +6257,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -6360,19 +6360,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 437,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L449"
}
],
"signatures": [
@@ -6387,7 +6387,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 437,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L437"
}
],
"typeParameters": [
@@ -6495,7 +6495,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
}
],
"parameters": [
@@ -6621,19 +6621,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 414,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 422,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L422"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L422"
}
],
"signatures": [
@@ -6648,7 +6648,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
}
],
"typeParameters": [
@@ -6756,7 +6756,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 414,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L414"
}
],
"parameters": [
@@ -6838,7 +6838,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -6871,7 +6871,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -6919,7 +6919,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
}
],
"signatures": [
@@ -6974,7 +6974,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L104"
}
],
"typeParameters": [
@@ -7172,7 +7172,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -7205,7 +7205,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -7261,7 +7261,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -7299,7 +7299,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -7341,7 +7341,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -7388,7 +7388,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -7434,7 +7434,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -7472,7 +7472,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -7493,7 +7493,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -7654,19 +7654,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 664,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L683"
}
],
"signatures": [
@@ -7681,7 +7681,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 664,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L664"
}
],
"typeParameters": [
@@ -7861,7 +7861,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L669"
}
],
"parameters": [
@@ -7919,7 +7919,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -7952,7 +7952,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -8061,19 +8061,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L145"
}
],
"signatures": [
@@ -8088,7 +8088,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L137"
}
],
"typeParameters": [
@@ -8161,7 +8161,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L138"
}
],
"parameters": [
@@ -8252,19 +8252,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 150,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 158,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158"
}
],
"signatures": [
@@ -8279,7 +8279,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 150,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L150"
}
],
"typeParameters": [
@@ -8352,7 +8352,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L151"
}
],
"parameters": [
@@ -8443,19 +8443,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 234,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L242"
}
],
"signatures": [
@@ -8470,7 +8470,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 234,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L234"
}
],
"typeParameters": [
@@ -8529,7 +8529,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L235"
}
],
"parameters": [
@@ -8620,19 +8620,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L258"
}
],
"signatures": [
@@ -8647,7 +8647,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L247"
}
],
"typeParameters": [
@@ -8713,7 +8713,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L251"
}
],
"parameters": [
@@ -8811,19 +8811,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 263,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L274"
}
],
"signatures": [
@@ -8838,7 +8838,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 263,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L263"
}
],
"typeParameters": [
@@ -8904,7 +8904,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L267"
}
],
"parameters": [
@@ -8956,7 +8956,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
}
],
"signatures": [
@@ -8995,7 +8995,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L357"
}
],
"typeParameters": [
@@ -9283,19 +9283,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 307,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 324,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L324"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L324"
}
],
"signatures": [
@@ -9310,7 +9310,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 307,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L307"
}
],
"typeParameters": [
@@ -9401,7 +9401,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L311"
}
],
"parameters": [
@@ -9455,7 +9455,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
}
],
"signatures": [
@@ -9526,7 +9526,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
}
],
"typeParameters": [
@@ -9751,19 +9751,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L197"
}
],
"signatures": [
@@ -9778,7 +9778,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L189"
}
],
"typeParameters": [
@@ -9837,7 +9837,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L190"
}
],
"parameters": [
@@ -9928,19 +9928,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L213"
}
],
"signatures": [
@@ -9955,7 +9955,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L202"
}
],
"typeParameters": [
@@ -10021,7 +10021,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L206"
}
],
"parameters": [
@@ -10119,19 +10119,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 218,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 222,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L229"
}
],
"signatures": [
@@ -10146,7 +10146,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 218,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L218"
}
],
"typeParameters": [
@@ -10212,7 +10212,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 222,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L222"
}
],
"parameters": [
@@ -10266,7 +10266,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -10299,7 +10299,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -10374,7 +10374,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -10403,7 +10403,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -10424,7 +10424,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -10506,19 +10506,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 171,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L171"
}
],
"signatures": [
@@ -10533,7 +10533,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L163"
}
],
"typeParameters": [
@@ -10606,7 +10606,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L164"
}
],
"parameters": [
@@ -10697,19 +10697,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L184"
}
],
"signatures": [
@@ -10724,7 +10724,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L176"
}
],
"typeParameters": [
@@ -10797,7 +10797,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L177"
}
],
"parameters": [
@@ -10878,19 +10878,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 597,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 598,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 606,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L606"
}
],
"signatures": [
@@ -10905,7 +10905,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 597,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L597"
}
],
"typeParameters": [
@@ -10982,7 +10982,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 598,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L598"
}
],
"parameters": [
@@ -11033,7 +11033,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -11058,7 +11058,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -11264,7 +11264,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -11305,7 +11305,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -11412,7 +11412,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
}
],
"signatures": [
@@ -11451,7 +11451,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L125"
}
],
"typeParameters": [
@@ -11686,19 +11686,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 613,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 618,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 632,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L632"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L632"
}
],
"signatures": [
@@ -11713,7 +11713,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 613,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L613"
}
],
"typeParameters": [
@@ -11802,7 +11802,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 618,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L618"
}
],
"parameters": [
@@ -11858,7 +11858,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 388,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
}
],
"signatures": [
@@ -11897,7 +11897,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 388,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L388"
}
],
"typeParameters": [
@@ -12083,7 +12083,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 652,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
}
],
"signatures": [
@@ -12122,7 +12122,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 652,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L652"
}
],
"parameters": [
@@ -12197,7 +12197,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 657,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
}
],
"type": {
@@ -12226,7 +12226,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 657,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
}
],
"type": {
@@ -12247,7 +12247,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 657,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L657"
}
]
}
@@ -12409,31 +12409,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -12450,7 +12450,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -12511,7 +12511,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -12532,7 +12532,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -12553,7 +12553,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -12573,7 +12573,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -12603,7 +12603,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -12648,7 +12648,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12669,7 +12669,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12690,7 +12690,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12710,7 +12710,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -12766,7 +12766,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -12827,7 +12827,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12848,7 +12848,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12869,7 +12869,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12889,7 +12889,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -12945,7 +12945,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -12990,7 +12990,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -13011,7 +13011,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -13032,7 +13032,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -13052,7 +13052,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -13133,19 +13133,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 548,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L548"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L548"
}
],
"signatures": [
@@ -13160,7 +13160,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L536"
}
],
"typeParameters": [
@@ -13249,7 +13249,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L540"
}
],
"parameters": [
@@ -13312,7 +13312,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"signatures": [
@@ -13365,7 +13365,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"typeParameters": [
@@ -13420,7 +13420,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -13440,7 +13440,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -13465,7 +13465,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -13485,7 +13485,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -13718,7 +13718,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -13783,7 +13783,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -13877,7 +13877,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -13906,7 +13906,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -13927,7 +13927,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -14009,19 +14009,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 521,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 531,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L531"
}
],
"signatures": [
@@ -14036,7 +14036,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 521,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L521"
}
],
"typeParameters": [
@@ -14095,7 +14095,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L522"
}
],
"parameters": [
@@ -14186,19 +14186,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 463,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 472,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L472"
}
],
"signatures": [
@@ -14213,7 +14213,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 463,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L463"
}
],
"typeParameters": [
@@ -14272,7 +14272,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L464"
}
],
"parameters": [
@@ -14371,19 +14371,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 477,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 487,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L487"
}
],
"signatures": [
@@ -14398,7 +14398,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 477,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L477"
}
],
"typeParameters": [
@@ -14457,7 +14457,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
}
],
"parameters": [
@@ -14548,19 +14548,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 493,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L501"
}
],
"signatures": [
@@ -14575,7 +14575,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L492"
}
],
"typeParameters": [
@@ -14634,7 +14634,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 493,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L493"
}
],
"parameters": [
@@ -14733,19 +14733,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 506,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 507,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 516,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
}
],
"signatures": [
@@ -14760,7 +14760,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 506,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L506"
}
],
"typeParameters": [
@@ -14819,7 +14819,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 507,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L507"
}
],
"parameters": [
@@ -14918,19 +14918,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 294,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 302,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L302"
}
],
"signatures": [
@@ -14945,7 +14945,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
}
],
"typeParameters": [
@@ -15004,7 +15004,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 294,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L294"
}
],
"parameters": [
@@ -15103,19 +15103,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 288,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L288"
}
],
"signatures": [
@@ -15130,7 +15130,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 279,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L279"
}
],
"typeParameters": [
@@ -15189,7 +15189,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
}
],
"parameters": [
@@ -15236,7 +15236,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -15280,7 +15280,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -15409,7 +15409,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -15442,7 +15442,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -15475,7 +15475,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -15540,7 +15540,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -15791,7 +15791,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"signatures": [
@@ -15816,7 +15816,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"parameters": [
@@ -15873,7 +15873,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -15914,7 +15914,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -16096,19 +16096,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 559,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 564,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 579,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L579"
}
],
"signatures": [
@@ -16123,7 +16123,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 559,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L559"
}
],
"typeParameters": [
@@ -16195,7 +16195,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 562,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
}
],
"type": {
@@ -16216,7 +16216,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 562,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
}
],
"type": {
@@ -16249,7 +16249,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 562,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L562"
}
]
}
@@ -16272,7 +16272,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 564,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L564"
}
],
"parameters": [
@@ -16328,7 +16328,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 567,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
}
],
"type": {
@@ -16349,7 +16349,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 567,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
}
],
"type": {
@@ -16382,7 +16382,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 567,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L567"
}
]
}
@@ -16409,7 +16409,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"signatures": [
@@ -16445,7 +16445,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"typeParameters": [
@@ -16521,7 +16521,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"signatures": [
@@ -16536,7 +16536,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"parameters": [
@@ -16637,7 +16637,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"signatures": [
@@ -16652,7 +16652,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"parameters": [
@@ -16762,7 +16762,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"signatures": [
@@ -16793,7 +16793,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"type": {
@@ -16932,7 +16932,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 79,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L79"
}
],
"typeParameters": [
@@ -17117,7 +17117,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
}
],
"signatures": [
@@ -17151,7 +17151,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L38"
}
],
"typeParameters": [
@@ -17261,7 +17261,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -17287,7 +17287,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -17354,7 +17354,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 48,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L48"
}
],
"type": {
@@ -17583,7 +17583,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 46,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
}
],
"type": {
@@ -17610,7 +17610,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 47,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L47"
}
],
"type": {
@@ -17631,7 +17631,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 49,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L49"
}
],
"type": {
@@ -17652,7 +17652,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 45,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
}
]
}
@@ -17724,7 +17724,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
}
],
"type": {
@@ -17951,7 +17951,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
}
],
"type": {
@@ -17977,7 +17977,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
}
],
"type": {
@@ -17998,7 +17998,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
}
],
"type": {
@@ -18022,7 +18022,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
}
],
"type": {
@@ -18046,7 +18046,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L23"
}
],
"type": {
@@ -18065,7 +18065,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 505,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
}
],
"signatures": [
@@ -18096,7 +18096,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 505,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L505"
}
],
"parameters": [
@@ -18176,7 +18176,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 508,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L508"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L508"
}
],
"type": {
@@ -18209,7 +18209,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 507,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L507"
}
]
}
@@ -18393,19 +18393,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 210,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L210"
}
],
"signatures": [
@@ -18420,7 +18420,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L155"
}
],
"typeParameters": [
@@ -18496,7 +18496,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 158,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L158"
}
],
"type": {
@@ -18529,7 +18529,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 157,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L157"
}
]
}
@@ -18612,7 +18612,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L169"
}
],
"typeParameters": [
@@ -18691,7 +18691,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 172,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L172"
}
],
"type": {
@@ -18725,7 +18725,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 173,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L173"
}
],
"type": {
@@ -18745,7 +18745,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 171,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L171"
}
]
}
@@ -18830,7 +18830,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
}
],
"signatures": [
@@ -18896,7 +18896,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L94"
}
],
"typeParameters": [
@@ -19092,7 +19092,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 108,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L108"
}
],
"type": {
@@ -19150,7 +19150,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 107,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L107"
}
],
"type": {
@@ -19170,7 +19170,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 106,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L106"
}
]
}
@@ -19261,7 +19261,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 452,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
}
],
"signatures": [
@@ -19292,7 +19292,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 452,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L452"
}
],
"typeParameters": [
@@ -19422,7 +19422,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 457,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L457"
}
],
"type": {
@@ -19455,7 +19455,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 456,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L456"
}
]
}
@@ -19751,19 +19751,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 377,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L377"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L377"
}
],
"signatures": [
@@ -19778,7 +19778,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 258,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L258"
}
],
"typeParameters": [
@@ -19854,7 +19854,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 263,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L263"
}
],
"type": {
@@ -19888,7 +19888,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 262,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L262"
}
],
"type": {
@@ -19909,7 +19909,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 261,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L261"
}
],
"type": {
@@ -19929,7 +19929,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 260,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L260"
}
]
}
@@ -20012,7 +20012,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L274"
}
],
"typeParameters": [
@@ -20091,7 +20091,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 279,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L279"
}
],
"type": {
@@ -20125,7 +20125,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 280,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L280"
}
],
"type": {
@@ -20146,7 +20146,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 278,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L278"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L278"
}
],
"type": {
@@ -20167,7 +20167,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 277,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L277"
}
],
"type": {
@@ -20187,7 +20187,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 276,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L276"
}
]
}
@@ -20281,7 +20281,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 11,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
}
],
"typeParameters": [
@@ -20391,7 +20391,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -20411,7 +20411,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -20452,7 +20452,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"signatures": [
@@ -20486,7 +20486,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"typeParameters": [
@@ -20615,7 +20615,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -20636,7 +20636,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -20863,7 +20863,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -20889,7 +20889,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 54,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L54"
}
],
"type": {
@@ -20908,7 +20908,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -20950,7 +20950,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -20971,7 +20971,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -20992,7 +20992,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -21016,7 +21016,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -21042,7 +21042,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 55,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L55"
}
],
"type": {
@@ -21062,7 +21062,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
]
}
@@ -21162,7 +21162,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -21189,7 +21189,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -21424,7 +21424,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -21456,7 +21456,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -21483,7 +21483,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -21532,7 +21532,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -21559,7 +21559,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -21588,7 +21588,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -21620,7 +21620,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -21652,7 +21652,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -21676,7 +21676,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -21699,7 +21699,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -21746,7 +21746,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -21777,7 +21777,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -21815,7 +21815,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -21846,7 +21846,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -21902,7 +21902,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -21940,7 +21940,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -21982,7 +21982,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -22029,7 +22029,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -22075,7 +22075,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -22113,7 +22113,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -22134,7 +22134,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -22229,7 +22229,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -22260,7 +22260,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -22313,7 +22313,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -22344,7 +22344,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -22419,7 +22419,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -22448,7 +22448,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -22469,7 +22469,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -22495,7 +22495,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -22518,7 +22518,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -22712,7 +22712,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -22751,7 +22751,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -22982,31 +22982,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -23021,7 +23021,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -23082,7 +23082,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -23103,7 +23103,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -23124,7 +23124,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -23144,7 +23144,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -23167,7 +23167,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -23212,7 +23212,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -23233,7 +23233,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -23254,7 +23254,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -23274,7 +23274,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -23323,7 +23323,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -23384,7 +23384,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -23405,7 +23405,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -23426,7 +23426,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -23446,7 +23446,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -23495,7 +23495,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -23540,7 +23540,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -23561,7 +23561,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -23582,7 +23582,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -23602,7 +23602,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -23629,7 +23629,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"signatures": [
@@ -23682,7 +23682,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 339,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L339"
}
],
"typeParameters": [
@@ -23737,7 +23737,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -23757,7 +23757,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -23782,7 +23782,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
],
"type": {
@@ -23802,7 +23802,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 341,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L341"
}
]
}
@@ -24033,7 +24033,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -24096,7 +24096,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -24190,7 +24190,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -24219,7 +24219,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -24240,7 +24240,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -24266,7 +24266,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -24308,7 +24308,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -24435,7 +24435,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -24466,7 +24466,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -24487,7 +24487,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -24550,7 +24550,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -24791,7 +24791,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"signatures": [
@@ -24816,7 +24816,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L88"
}
],
"parameters": [
@@ -24871,7 +24871,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -24910,7 +24910,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -25000,7 +25000,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"signatures": [
@@ -25036,7 +25036,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L94"
}
],
"typeParameters": [
@@ -25112,7 +25112,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"signatures": [
@@ -25127,7 +25127,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 101,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L101"
}
],
"parameters": [
@@ -25228,7 +25228,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"signatures": [
@@ -25243,7 +25243,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 108,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L108"
}
],
"parameters": [
@@ -25353,7 +25353,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"signatures": [
@@ -25384,7 +25384,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestBuilder.ts#L80"
}
],
"type": {
@@ -25521,7 +25521,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
}
],
"typeParameters": [
@@ -25673,7 +25673,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L23"
}
],
"type": {
@@ -25692,7 +25692,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L22"
}
],
"type": {
@@ -25711,7 +25711,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L21"
}
],
"type": {
@@ -25735,7 +25735,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -25761,7 +25761,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -25786,7 +25786,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 20,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L20"
}
],
"extendedTypes": [
@@ -25819,7 +25819,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L18"
}
],
"type": {
@@ -25847,7 +25847,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L17"
}
],
"type": {
@@ -25870,7 +25870,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L16"
}
],
"type": {
@@ -25891,7 +25891,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -25917,7 +25917,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -25942,7 +25942,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 15,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L15"
}
],
"typeParameters": [
@@ -25977,7 +25977,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
],
"type": {
@@ -26002,7 +26002,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/common/common.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/common/common.ts#L55"
}
],
"type": {
@@ -26022,7 +26022,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
]
}
@@ -26039,7 +26039,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L30"
}
],
"typeParameters": [
@@ -26087,7 +26087,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L31"
}
],
"typeParameters": [
@@ -26129,7 +26129,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/types/types.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/types/types.ts#L29"
}
],
"typeParameters": [
@@ -26187,7 +26187,7 @@
"fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts",
"line": 38,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
}
],
"typeParameters": [
@@ -26772,7 +26772,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 16,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L16"
}
],
"type": {
@@ -26795,7 +26795,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L21"
}
],
"type": {
@@ -26819,7 +26819,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L17"
}
],
"type": {
@@ -26843,7 +26843,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L22"
}
],
"type": {
@@ -26867,7 +26867,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L19"
}
],
"type": {
@@ -26891,7 +26891,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L18"
}
],
"type": {
@@ -26915,7 +26915,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/postgrest-js/src/index.ts#L20"
}
],
"type": {
@@ -26940,7 +26940,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 16,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/postgrest-js/src/index.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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 c705edced3d88..1e7b1747ccc47 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/realtime.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/realtime.json
@@ -23,7 +23,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
}
],
"type": {
@@ -42,7 +42,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
}
],
"type": {
@@ -61,7 +61,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
}
],
"type": {
@@ -80,7 +80,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
}
],
"type": {
@@ -100,7 +100,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 134,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
}
]
},
@@ -122,7 +122,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
}
],
"type": {
@@ -141,7 +141,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
}
],
"type": {
@@ -160,7 +160,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 129,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
}
],
"type": {
@@ -179,7 +179,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
}
],
"type": {
@@ -199,7 +199,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 127,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
}
]
},
@@ -221,7 +221,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L31"
}
]
},
@@ -301,7 +301,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
}
],
"type": {
@@ -320,7 +320,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
}
],
"type": {
@@ -339,7 +339,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
}
],
"type": {
@@ -358,7 +358,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
}
],
"type": {
@@ -378,7 +378,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 141,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
}
]
},
@@ -408,7 +408,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"signatures": [
@@ -442,7 +442,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"parameters": [
@@ -515,7 +515,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"type": {
@@ -531,7 +531,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"indexSignatures": [
@@ -546,7 +546,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
],
"parameters": [
@@ -584,7 +584,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 169,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
}
],
"type": {
@@ -608,7 +608,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"type": {
@@ -624,7 +624,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"indexSignatures": [
@@ -639,7 +639,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"parameters": [
@@ -677,7 +677,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
}
],
"type": {
@@ -696,7 +696,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 167,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
}
],
"type": {
@@ -716,7 +716,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
]
}
@@ -739,7 +739,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
}
],
"type": {
@@ -758,7 +758,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
}
],
"type": {
@@ -778,7 +778,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
}
],
"type": {
@@ -805,7 +805,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 203,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
}
],
"type": {
@@ -827,7 +827,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
}
],
"type": {
@@ -849,7 +849,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
}
],
"type": {
@@ -868,7 +868,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
}
],
"type": {
@@ -897,7 +897,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
}
],
"type": {
@@ -924,7 +924,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 204,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
}
],
"type": {
@@ -946,7 +946,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
}
],
"type": {
@@ -971,7 +971,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
}
],
"type": {
@@ -990,7 +990,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
}
],
"type": {
@@ -1019,7 +1019,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 202,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
}
],
"type": {
@@ -1038,7 +1038,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 557,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
}
],
"signatures": [
@@ -1072,7 +1072,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 557,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
}
],
"parameters": [
@@ -1150,7 +1150,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 560,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
}
],
"type": {
@@ -1170,7 +1170,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 560,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
}
]
}
@@ -1208,7 +1208,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -1228,7 +1228,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
]
}
@@ -1253,7 +1253,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -1272,7 +1272,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -1291,7 +1291,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -1311,7 +1311,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
]
}
@@ -1336,97 +1336,97 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 465,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L532"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L532"
}
],
"signatures": [
@@ -1449,7 +1449,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
}
],
"parameters": [
@@ -1490,7 +1490,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"type": {
@@ -1510,7 +1510,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
]
}
@@ -1535,7 +1535,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 422,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
}
],
"signatures": [
@@ -1550,7 +1550,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 422,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
}
],
"type": {
@@ -1590,7 +1590,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"typeParameters": [
@@ -1613,7 +1613,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"indexSignatures": [
@@ -1628,7 +1628,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"parameters": [
@@ -1692,7 +1692,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"type": {
@@ -1712,7 +1712,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
]
}
@@ -1737,7 +1737,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 427,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
}
],
"signatures": [
@@ -1752,7 +1752,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 427,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
}
],
"parameters": [
@@ -1816,7 +1816,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"typeParameters": [
@@ -1839,7 +1839,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"indexSignatures": [
@@ -1854,7 +1854,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"parameters": [
@@ -1918,7 +1918,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"type": {
@@ -1938,7 +1938,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
]
}
@@ -1963,7 +1963,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 432,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
}
],
"signatures": [
@@ -1978,7 +1978,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 432,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
}
],
"parameters": [
@@ -2042,7 +2042,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"typeParameters": [
@@ -2065,7 +2065,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"indexSignatures": [
@@ -2080,7 +2080,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"parameters": [
@@ -2156,7 +2156,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 437,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
}
],
"signatures": [
@@ -2171,7 +2171,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 437,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
}
],
"parameters": [
@@ -2235,7 +2235,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"typeParameters": [
@@ -2258,7 +2258,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"indexSignatures": [
@@ -2273,7 +2273,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"parameters": [
@@ -2349,7 +2349,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 442,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
}
],
"signatures": [
@@ -2364,7 +2364,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 442,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
}
],
"parameters": [
@@ -2428,7 +2428,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"typeParameters": [
@@ -2451,7 +2451,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"indexSignatures": [
@@ -2466,7 +2466,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"parameters": [
@@ -2542,7 +2542,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 447,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
}
],
"signatures": [
@@ -2557,7 +2557,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 447,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
}
],
"parameters": [
@@ -2621,7 +2621,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"typeParameters": [
@@ -2644,7 +2644,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"indexSignatures": [
@@ -2659,7 +2659,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"parameters": [
@@ -2735,7 +2735,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 452,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
}
],
"signatures": [
@@ -2750,7 +2750,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 452,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
}
],
"parameters": [
@@ -2814,7 +2814,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
}
],
"typeParameters": [
@@ -2837,7 +2837,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
}
],
"indexSignatures": [
@@ -2852,7 +2852,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
}
],
"parameters": [
@@ -2945,7 +2945,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
}
],
"signatures": [
@@ -2960,7 +2960,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
}
],
"parameters": [
@@ -3024,7 +3024,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 465,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
}
],
"parameters": [
@@ -3081,7 +3081,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 467,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
}
],
"type": {
@@ -3101,7 +3101,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 467,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
}
]
}
@@ -3134,7 +3134,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 468,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
}
],
"signatures": [
@@ -3149,7 +3149,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 468,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
}
],
"parameters": [
@@ -3179,7 +3179,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"type": {
@@ -3200,7 +3200,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 471,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
}
],
"type": {
@@ -3223,7 +3223,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
],
"type": {
@@ -3244,7 +3244,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 472,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
],
"type": {
@@ -3264,7 +3264,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 471,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
}
]
}
@@ -3281,7 +3281,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 469,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L469"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L469"
}
],
"type": {
@@ -3301,7 +3301,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 468,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
}
],
"indexSignatures": [
@@ -3316,7 +3316,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 475,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
}
],
"parameters": [
@@ -3379,7 +3379,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"typeParameters": [
@@ -3402,7 +3402,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"indexSignatures": [
@@ -3417,7 +3417,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"parameters": [
@@ -3481,7 +3481,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 480,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
}
],
"type": {
@@ -3501,7 +3501,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 480,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
}
]
}
@@ -3526,7 +3526,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 481,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
],
"signatures": [
@@ -3541,7 +3541,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 481,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
],
"parameters": [
@@ -3571,7 +3571,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 483,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
}
],
"type": {
@@ -3592,7 +3592,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 484,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
}
],
"type": {
@@ -3615,7 +3615,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
],
"type": {
@@ -3636,7 +3636,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 485,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
}
],
"type": {
@@ -3656,7 +3656,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 484,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
}
]
}
@@ -3673,7 +3673,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 488,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
}
],
"type": {
@@ -3695,7 +3695,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 482,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L482"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L482"
}
],
"type": {
@@ -3715,7 +3715,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 481,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
]
}
@@ -3759,7 +3759,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
}
],
"typeParameters": [
@@ -3828,7 +3828,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 493,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
}
],
"type": {
@@ -3851,7 +3851,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 493,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
}
]
}
@@ -3876,7 +3876,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
],
"signatures": [
@@ -3891,7 +3891,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
],
"parameters": [
@@ -3921,7 +3921,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 496,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
}
],
"type": {
@@ -3943,7 +3943,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 497,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
}
],
"type": {
@@ -3976,7 +3976,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
],
"type": {
@@ -3996,7 +3996,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
]
}
@@ -4040,7 +4040,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
}
],
"typeParameters": [
@@ -4063,7 +4063,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
}
],
"indexSignatures": [
@@ -4078,7 +4078,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
}
],
"parameters": [
@@ -4142,7 +4142,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 502,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
}
],
"type": {
@@ -4165,7 +4165,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 502,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
}
]
}
@@ -4190,7 +4190,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
],
"signatures": [
@@ -4205,7 +4205,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
],
"parameters": [
@@ -4235,7 +4235,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 505,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
}
],
"type": {
@@ -4257,7 +4257,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 506,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
}
],
"type": {
@@ -4290,7 +4290,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
],
"type": {
@@ -4310,7 +4310,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
]
}
@@ -4354,7 +4354,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
}
],
"typeParameters": [
@@ -4377,7 +4377,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
}
],
"indexSignatures": [
@@ -4392,7 +4392,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
}
],
"parameters": [
@@ -4456,7 +4456,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 511,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
}
],
"type": {
@@ -4479,7 +4479,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 511,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
}
]
}
@@ -4504,7 +4504,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
],
"signatures": [
@@ -4519,7 +4519,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
],
"parameters": [
@@ -4549,7 +4549,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 514,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
}
],
"type": {
@@ -4571,7 +4571,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 515,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
}
],
"type": {
@@ -4604,7 +4604,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
],
"type": {
@@ -4624,7 +4624,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
]
}
@@ -4668,7 +4668,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
}
],
"typeParameters": [
@@ -4691,7 +4691,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
}
],
"indexSignatures": [
@@ -4706,7 +4706,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
}
],
"parameters": [
@@ -4770,7 +4770,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 520,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
}
],
"type": {
@@ -4793,7 +4793,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 520,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
}
]
}
@@ -4818,7 +4818,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 521,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
}
],
"signatures": [
@@ -4833,7 +4833,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 521,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
}
],
"parameters": [
@@ -4863,7 +4863,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 523,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L523"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L523"
}
],
"type": {
@@ -4885,7 +4885,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 524,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
}
],
"type": {
@@ -4918,7 +4918,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 522,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
}
],
"type": {
@@ -4938,7 +4938,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 521,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
}
]
}
@@ -4982,7 +4982,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
}
],
"typeParameters": [
@@ -5005,7 +5005,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
}
],
"indexSignatures": [
@@ -5020,7 +5020,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
}
],
"parameters": [
@@ -5094,7 +5094,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 530,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
}
],
"signatures": [
@@ -5109,7 +5109,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 530,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
}
],
"parameters": [
@@ -5156,7 +5156,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"signatures": [
@@ -5179,7 +5179,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"typeParameters": [
@@ -5202,7 +5202,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"indexSignatures": [
@@ -5217,7 +5217,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"parameters": [
@@ -5282,7 +5282,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 618,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
}
],
"signatures": [
@@ -5305,7 +5305,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 618,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
}
],
"parameters": [
@@ -5351,7 +5351,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 621,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L621"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L621"
}
],
"type": {
@@ -5380,7 +5380,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 622,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L622"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L622"
}
],
"type": {
@@ -5407,7 +5407,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 620,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L620"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L620"
}
],
"type": {
@@ -5440,7 +5440,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 619,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L619"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L619"
}
],
"indexSignatures": [
@@ -5455,7 +5455,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 623,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L623"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L623"
}
],
"parameters": [
@@ -5507,7 +5507,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 625,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
}
],
"indexSignatures": [
@@ -5522,7 +5522,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 625,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
}
],
"parameters": [
@@ -5580,7 +5580,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"signatures": [
@@ -5603,7 +5603,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"parameters": [
@@ -5628,7 +5628,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"signatures": [
@@ -5643,7 +5643,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"parameters": [
@@ -5722,7 +5722,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 746,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
}
],
"signatures": [
@@ -5745,7 +5745,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 746,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
}
],
"type": {
@@ -5766,7 +5766,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 389,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
}
],
"signatures": [
@@ -5797,7 +5797,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 389,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
}
],
"parameters": [
@@ -5820,7 +5820,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 390,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
}
],
"indexSignatures": [
@@ -5835,7 +5835,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 390,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
}
],
"parameters": [
@@ -5879,7 +5879,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 391,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
}
],
"indexSignatures": [
@@ -5894,7 +5894,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 391,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
}
],
"parameters": [
@@ -5952,7 +5952,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 707,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
}
],
"signatures": [
@@ -5983,7 +5983,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 707,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
}
],
"parameters": [
@@ -6042,7 +6042,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"signatures": [
@@ -6065,7 +6065,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"parameters": [
@@ -6088,7 +6088,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"indexSignatures": [
@@ -6103,7 +6103,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"parameters": [
@@ -6161,7 +6161,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"signatures": [
@@ -6184,7 +6184,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"parameters": [
@@ -6207,7 +6207,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"indexSignatures": [
@@ -6222,7 +6222,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"parameters": [
@@ -6275,7 +6275,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 164,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
}
]
},
@@ -6297,7 +6297,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L179"
}
],
"signatures": [
@@ -6331,7 +6331,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L179"
}
],
"parameters": [
@@ -6485,7 +6485,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"type": {
@@ -6508,7 +6508,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"signatures": [
@@ -6523,7 +6523,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"type": {
@@ -6569,7 +6569,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L103"
}
],
"type": {
@@ -6598,7 +6598,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L104"
}
],
"type": {
@@ -6627,7 +6627,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L106"
}
],
"type": {
@@ -6653,7 +6653,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 126,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L126"
}
],
"type": {
@@ -6684,7 +6684,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 124,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L124"
}
],
"type": {
@@ -6708,7 +6708,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 123,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L123"
}
],
"type": {
@@ -6732,7 +6732,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 107,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L107"
}
],
"type": {
@@ -6752,7 +6752,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"type": {
@@ -6995,7 +6995,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"type": {
@@ -7011,7 +7011,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"indexSignatures": [
@@ -7026,7 +7026,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"parameters": [
@@ -7063,7 +7063,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"type": {
@@ -7079,7 +7079,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"signatures": [
@@ -7094,7 +7094,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"parameters": [
@@ -7149,7 +7149,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L114"
}
],
"type": {
@@ -7169,7 +7169,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L115"
}
],
"type": {
@@ -7204,7 +7204,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 108,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L108"
}
],
"type": {
@@ -7224,7 +7224,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L121"
}
],
"type": {
@@ -7251,7 +7251,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L122"
}
],
"type": {
@@ -7277,7 +7277,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"type": {
@@ -7293,7 +7293,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"indexSignatures": [
@@ -7308,7 +7308,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"parameters": [
@@ -7345,7 +7345,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"type": {
@@ -7374,7 +7374,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L125"
}
],
"type": {
@@ -7398,7 +7398,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 119,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L119"
}
],
"type": {
@@ -7433,7 +7433,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L118"
}
],
"type": {
@@ -7453,7 +7453,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L127"
}
],
"type": {
@@ -7481,7 +7481,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L128"
}
],
"type": {
@@ -7507,7 +7507,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 129,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L129"
}
],
"type": {
@@ -7530,7 +7530,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 131,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L131"
}
],
"type": {
@@ -7557,7 +7557,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 132,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L132"
}
],
"type": {
@@ -7584,7 +7584,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 133,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L133"
}
],
"type": {
@@ -7611,7 +7611,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 130,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L130"
}
],
"type": {
@@ -7639,7 +7639,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 129,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L129"
}
]
}
@@ -7657,7 +7657,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L112"
}
],
"type": {
@@ -7677,7 +7677,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L113"
}
],
"type": {
@@ -7708,7 +7708,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L120"
}
],
"type": {
@@ -7730,7 +7730,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L142"
}
],
"type": {
@@ -7751,7 +7751,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L144"
}
],
"type": {
@@ -7777,7 +7777,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L143"
}
],
"type": {
@@ -7796,7 +7796,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L381"
}
],
"signatures": [
@@ -7837,7 +7837,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L381"
}
],
"parameters": [
@@ -7888,7 +7888,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L198"
}
],
"signatures": [
@@ -7911,7 +7911,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L198"
}
],
"type": {
@@ -7932,7 +7932,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 340,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L340"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L340"
}
],
"signatures": [
@@ -7955,7 +7955,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 340,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L340"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L340"
}
],
"type": {
@@ -7981,7 +7981,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L264"
}
],
"signatures": [
@@ -8004,7 +8004,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L264"
}
],
"parameters": [
@@ -8069,7 +8069,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L254"
}
],
"signatures": [
@@ -8103,7 +8103,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L254"
}
],
"type": {
@@ -8124,7 +8124,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L517"
}
],
"signatures": [
@@ -8147,7 +8147,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L517"
}
],
"type": {
@@ -8168,7 +8168,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 300,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L300"
}
],
"signatures": [
@@ -8191,7 +8191,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 300,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L300"
}
],
"type": {
@@ -8218,7 +8218,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L356"
}
],
"signatures": [
@@ -8249,7 +8249,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L356"
}
],
"type": {
@@ -8270,7 +8270,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 363,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L363"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L363"
}
],
"signatures": [
@@ -8301,7 +8301,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 363,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L363"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L363"
}
],
"type": {
@@ -8322,7 +8322,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L370"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L370"
}
],
"signatures": [
@@ -8353,7 +8353,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L370"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L370"
}
],
"type": {
@@ -8374,7 +8374,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L333"
}
],
"signatures": [
@@ -8405,7 +8405,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L333"
}
],
"parameters": [
@@ -8463,7 +8463,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"signatures": [
@@ -8486,7 +8486,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"parameters": [
@@ -8509,7 +8509,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"signatures": [
@@ -8524,7 +8524,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"parameters": [
@@ -8586,7 +8586,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 400,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L400"
}
],
"signatures": [
@@ -8609,7 +8609,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 400,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L400"
}
],
"parameters": [
@@ -8645,7 +8645,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 321,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L321"
}
],
"signatures": [
@@ -8668,7 +8668,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 321,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L321"
}
],
"type": {
@@ -8705,7 +8705,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 308,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L308"
}
],
"signatures": [
@@ -8728,7 +8728,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 308,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L308"
}
],
"parameters": [
@@ -8786,7 +8786,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 456,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L456"
}
],
"signatures": [
@@ -8809,7 +8809,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 456,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L456"
}
],
"type": {
@@ -8841,7 +8841,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 435,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L435"
}
],
"signatures": [
@@ -8899,7 +8899,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 435,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L435"
}
],
"parameters": [
@@ -8976,7 +8976,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 102,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L102"
}
]
},
@@ -8998,7 +8998,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"signatures": [
@@ -9032,7 +9032,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"parameters": [
@@ -9114,7 +9114,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
],
"type": {
@@ -9137,7 +9137,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L65"
}
],
"type": {
@@ -9161,7 +9161,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L66"
}
],
"type": {
@@ -9185,7 +9185,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -9201,7 +9201,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"signatures": [
@@ -9216,7 +9216,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -9240,7 +9240,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
]
}
@@ -9268,7 +9268,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 90,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L90"
}
],
"type": {
@@ -9290,7 +9290,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L63"
}
],
"type": {
@@ -9310,7 +9310,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L62"
}
],
"type": {
@@ -9339,7 +9339,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L61"
}
],
"type": {
@@ -9367,7 +9367,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L60"
}
],
"type": {
@@ -9394,7 +9394,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 59,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L59"
}
]
},
@@ -9427,7 +9427,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 167,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
}
],
"signatures": [
@@ -9461,7 +9461,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 167,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
}
],
"parameters": [
@@ -9539,7 +9539,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 147,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
}
],
"signatures": [
@@ -9573,7 +9573,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 147,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
}
],
"type": {
@@ -9687,7 +9687,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 182,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
}
],
"signatures": [
@@ -9721,7 +9721,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 182,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
}
],
"type": {
@@ -9743,7 +9743,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
}
]
},
@@ -9767,7 +9767,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
}
],
"type": {
@@ -9788,7 +9788,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
}
],
"type": {
@@ -9809,7 +9809,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 5,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
}
],
"type": {
@@ -9830,7 +9830,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 4,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
}
],
"type": {
@@ -9851,7 +9851,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 2,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
}
],
"type": {
@@ -9872,7 +9872,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"type": {
@@ -9888,7 +9888,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"signatures": [
@@ -9903,7 +9903,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"parameters": [
@@ -9946,7 +9946,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
}
],
"type": {
@@ -9965,7 +9965,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"type": {
@@ -9988,7 +9988,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"signatures": [
@@ -10003,7 +10003,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"parameters": [
@@ -10057,7 +10057,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"type": {
@@ -10080,7 +10080,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"signatures": [
@@ -10095,7 +10095,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"parameters": [
@@ -10149,7 +10149,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"type": {
@@ -10172,7 +10172,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"signatures": [
@@ -10187,7 +10187,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"parameters": [
@@ -10241,7 +10241,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"type": {
@@ -10264,7 +10264,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"signatures": [
@@ -10279,7 +10279,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"parameters": [
@@ -10335,7 +10335,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 3,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
}
],
"type": {
@@ -10356,7 +10356,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 8,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
}
],
"type": {
@@ -10377,7 +10377,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
}
],
"type": {
@@ -10398,7 +10398,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 7,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
}
],
"type": {
@@ -10417,7 +10417,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"signatures": [
@@ -10440,7 +10440,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"parameters": [
@@ -10490,7 +10490,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"signatures": [
@@ -10513,7 +10513,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"parameters": [
@@ -10562,7 +10562,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"signatures": [
@@ -10585,7 +10585,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"parameters": [
@@ -10635,7 +10635,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"signatures": [
@@ -10658,7 +10658,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"parameters": [
@@ -10740,7 +10740,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 1,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
}
]
},
@@ -10778,7 +10778,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"signatures": [
@@ -10793,7 +10793,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L63"
}
],
"parameters": [
@@ -10869,7 +10869,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"indexSignatures": [
@@ -10884,7 +10884,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L65"
}
],
"parameters": [
@@ -10918,7 +10918,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
],
"type": {
@@ -10941,7 +10941,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
],
"type": {
@@ -10974,7 +10974,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -10999,7 +10999,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -11020,7 +11020,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -11046,7 +11046,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -11066,7 +11066,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
]
}
@@ -11093,7 +11093,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -11118,7 +11118,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -11139,7 +11139,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -11159,7 +11159,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
]
}
@@ -11186,7 +11186,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
}
],
"type": {
@@ -11206,7 +11206,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
]
}
@@ -11224,7 +11224,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
]
}
@@ -11241,7 +11241,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 125,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
}
],
"type": {
@@ -11273,7 +11273,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
],
"type": {
@@ -11298,7 +11298,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"type": {
@@ -11314,7 +11314,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"signatures": [
@@ -11366,7 +11366,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L82"
}
],
"type": {
@@ -11392,7 +11392,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 81,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L81"
}
],
"type": {
@@ -11418,7 +11418,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L89"
}
],
"type": {
@@ -11444,7 +11444,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"type": {
@@ -11460,7 +11460,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"indexSignatures": [
@@ -11475,7 +11475,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"parameters": [
@@ -11513,7 +11513,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"type": {
@@ -11529,7 +11529,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"signatures": [
@@ -11592,7 +11592,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L77"
}
],
"type": {
@@ -11613,7 +11613,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 87,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L87"
}
],
"type": {
@@ -11639,7 +11639,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L80"
}
],
"type": {
@@ -11665,7 +11665,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L88"
}
],
"type": {
@@ -11691,7 +11691,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"type": {
@@ -11707,7 +11707,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"indexSignatures": [
@@ -11722,7 +11722,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"parameters": [
@@ -11760,7 +11760,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L83"
}
],
"type": {
@@ -11786,7 +11786,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L76"
}
],
"type": {
@@ -11807,7 +11807,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L75"
}
],
"type": {
@@ -11830,7 +11830,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L79"
}
],
"type": {
@@ -11851,7 +11851,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L90"
}
],
"type": {
@@ -11872,7 +11872,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L91"
}
],
"type": {
@@ -11894,7 +11894,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
]
}
@@ -11911,7 +11911,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
],
"type": {
@@ -11934,7 +11934,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L35"
}
],
"type": {
@@ -11955,7 +11955,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L38"
}
],
"type": {
@@ -11974,7 +11974,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L36"
}
],
"type": {
@@ -11993,7 +11993,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L37"
}
],
"type": {
@@ -12012,7 +12012,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L34"
}
],
"type": {
@@ -12032,7 +12032,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
]
}
@@ -12049,7 +12049,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
],
"typeParameters": [
@@ -12104,7 +12104,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
}
],
"type": {
@@ -12136,7 +12136,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
}
],
"type": {
@@ -12163,7 +12163,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
}
],
"type": {
@@ -12192,7 +12192,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
}
],
"type": {
@@ -12212,7 +12212,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
]
}
@@ -12229,7 +12229,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"typeParameters": [
@@ -12252,7 +12252,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"indexSignatures": [
@@ -12267,7 +12267,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"parameters": [
@@ -12355,7 +12355,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"typeParameters": [
@@ -12378,7 +12378,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"indexSignatures": [
@@ -12393,7 +12393,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"parameters": [
@@ -12451,7 +12451,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 96,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
}
],
"type": {
@@ -12481,7 +12481,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
],
"type": {
@@ -12497,7 +12497,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
]
}
@@ -12514,7 +12514,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 98,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
}
],
"type": {
@@ -12548,7 +12548,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 95,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
}
]
}
@@ -12567,7 +12567,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"typeParameters": [
@@ -12590,7 +12590,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"indexSignatures": [
@@ -12605,7 +12605,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"parameters": [
@@ -12663,7 +12663,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 82,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
}
],
"type": {
@@ -12693,7 +12693,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 83,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
}
],
"type": {
@@ -12715,7 +12715,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
],
"type": {
@@ -12731,7 +12731,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
]
}
@@ -12749,7 +12749,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 81,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
}
]
}
@@ -12768,7 +12768,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"typeParameters": [
@@ -12791,7 +12791,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"indexSignatures": [
@@ -12806,7 +12806,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"parameters": [
@@ -12864,7 +12864,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 89,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
}
],
"type": {
@@ -12894,7 +12894,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 90,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
}
],
"type": {
@@ -12916,7 +12916,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 91,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
}
],
"type": {
@@ -12950,7 +12950,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 88,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
}
]
}
@@ -12969,7 +12969,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"typeParameters": [
@@ -12992,7 +12992,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"indexSignatures": [
@@ -13007,7 +13007,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"parameters": [
@@ -13053,7 +13053,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L20"
}
],
"type": {
@@ -13089,7 +13089,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L18"
}
],
"type": {
@@ -13119,7 +13119,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L19"
}
],
"type": {
@@ -13138,7 +13138,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L21"
}
],
"type": {
@@ -13175,7 +13175,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
]
}
@@ -13192,7 +13192,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"typeParameters": [
@@ -13215,7 +13215,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"indexSignatures": [
@@ -13230,7 +13230,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"parameters": [
@@ -13276,7 +13276,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L27"
}
],
"type": {
@@ -13312,7 +13312,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L25"
}
],
"type": {
@@ -13342,7 +13342,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L26"
}
],
"type": {
@@ -13361,7 +13361,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L28"
}
],
"type": {
@@ -13398,7 +13398,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 77,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
]
}
@@ -13415,7 +13415,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"typeParameters": [
@@ -13438,7 +13438,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -13453,7 +13453,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"parameters": [
@@ -13490,7 +13490,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
]
}
@@ -13510,7 +13510,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 75,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -13525,7 +13525,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L14"
}
],
"parameters": [
@@ -13578,7 +13578,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 41,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L41"
}
],
"type": {
@@ -13612,7 +13612,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 148,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
}
],
"type": {
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json
index c705edced3d88..1e7b1747ccc47 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json
@@ -23,7 +23,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
}
],
"type": {
@@ -42,7 +42,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
}
],
"type": {
@@ -61,7 +61,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
}
],
"type": {
@@ -80,7 +80,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
}
],
"type": {
@@ -100,7 +100,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 134,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
}
]
},
@@ -122,7 +122,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
}
],
"type": {
@@ -141,7 +141,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
}
],
"type": {
@@ -160,7 +160,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 129,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
}
],
"type": {
@@ -179,7 +179,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
}
],
"type": {
@@ -199,7 +199,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 127,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
}
]
},
@@ -221,7 +221,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L31"
}
]
},
@@ -301,7 +301,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
}
],
"type": {
@@ -320,7 +320,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
}
],
"type": {
@@ -339,7 +339,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
}
],
"type": {
@@ -358,7 +358,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
}
],
"type": {
@@ -378,7 +378,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 141,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
}
]
},
@@ -408,7 +408,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"signatures": [
@@ -442,7 +442,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"parameters": [
@@ -515,7 +515,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"type": {
@@ -531,7 +531,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"indexSignatures": [
@@ -546,7 +546,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
],
"parameters": [
@@ -584,7 +584,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 169,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
}
],
"type": {
@@ -608,7 +608,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"type": {
@@ -624,7 +624,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"indexSignatures": [
@@ -639,7 +639,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"parameters": [
@@ -677,7 +677,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
}
],
"type": {
@@ -696,7 +696,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 167,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
}
],
"type": {
@@ -716,7 +716,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
]
}
@@ -739,7 +739,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
}
],
"type": {
@@ -758,7 +758,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
}
],
"type": {
@@ -778,7 +778,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
}
],
"type": {
@@ -805,7 +805,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 203,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
}
],
"type": {
@@ -827,7 +827,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
}
],
"type": {
@@ -849,7 +849,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
}
],
"type": {
@@ -868,7 +868,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
}
],
"type": {
@@ -897,7 +897,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
}
],
"type": {
@@ -924,7 +924,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 204,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
}
],
"type": {
@@ -946,7 +946,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
}
],
"type": {
@@ -971,7 +971,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
}
],
"type": {
@@ -990,7 +990,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
}
],
"type": {
@@ -1019,7 +1019,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 202,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
}
],
"type": {
@@ -1038,7 +1038,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 557,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
}
],
"signatures": [
@@ -1072,7 +1072,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 557,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L557"
}
],
"parameters": [
@@ -1150,7 +1150,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 560,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
}
],
"type": {
@@ -1170,7 +1170,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 560,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L560"
}
]
}
@@ -1208,7 +1208,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -1228,7 +1228,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
]
}
@@ -1253,7 +1253,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -1272,7 +1272,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -1291,7 +1291,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
],
"type": {
@@ -1311,7 +1311,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 561,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L561"
}
]
}
@@ -1336,97 +1336,97 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 465,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L532"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L532"
}
],
"signatures": [
@@ -1449,7 +1449,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
}
],
"parameters": [
@@ -1490,7 +1490,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"type": {
@@ -1510,7 +1510,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
]
}
@@ -1535,7 +1535,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 422,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
}
],
"signatures": [
@@ -1550,7 +1550,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 422,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
}
],
"type": {
@@ -1590,7 +1590,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"typeParameters": [
@@ -1613,7 +1613,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"indexSignatures": [
@@ -1628,7 +1628,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"parameters": [
@@ -1692,7 +1692,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"type": {
@@ -1712,7 +1712,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
]
}
@@ -1737,7 +1737,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 427,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
}
],
"signatures": [
@@ -1752,7 +1752,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 427,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L427"
}
],
"parameters": [
@@ -1816,7 +1816,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"typeParameters": [
@@ -1839,7 +1839,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"indexSignatures": [
@@ -1854,7 +1854,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"parameters": [
@@ -1918,7 +1918,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"type": {
@@ -1938,7 +1938,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
]
}
@@ -1963,7 +1963,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 432,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
}
],
"signatures": [
@@ -1978,7 +1978,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 432,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
}
],
"parameters": [
@@ -2042,7 +2042,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"typeParameters": [
@@ -2065,7 +2065,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"indexSignatures": [
@@ -2080,7 +2080,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"parameters": [
@@ -2156,7 +2156,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 437,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
}
],
"signatures": [
@@ -2171,7 +2171,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 437,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L437"
}
],
"parameters": [
@@ -2235,7 +2235,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"typeParameters": [
@@ -2258,7 +2258,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"indexSignatures": [
@@ -2273,7 +2273,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"parameters": [
@@ -2349,7 +2349,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 442,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
}
],
"signatures": [
@@ -2364,7 +2364,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 442,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L442"
}
],
"parameters": [
@@ -2428,7 +2428,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"typeParameters": [
@@ -2451,7 +2451,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"indexSignatures": [
@@ -2466,7 +2466,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"parameters": [
@@ -2542,7 +2542,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 447,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
}
],
"signatures": [
@@ -2557,7 +2557,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 447,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
}
],
"parameters": [
@@ -2621,7 +2621,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"typeParameters": [
@@ -2644,7 +2644,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"indexSignatures": [
@@ -2659,7 +2659,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"parameters": [
@@ -2735,7 +2735,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 452,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
}
],
"signatures": [
@@ -2750,7 +2750,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 452,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
}
],
"parameters": [
@@ -2814,7 +2814,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
}
],
"typeParameters": [
@@ -2837,7 +2837,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
}
],
"indexSignatures": [
@@ -2852,7 +2852,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 454,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
}
],
"parameters": [
@@ -2945,7 +2945,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
}
],
"signatures": [
@@ -2960,7 +2960,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
}
],
"parameters": [
@@ -3024,7 +3024,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 465,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
}
],
"parameters": [
@@ -3081,7 +3081,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 467,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
}
],
"type": {
@@ -3101,7 +3101,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 467,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
}
]
}
@@ -3134,7 +3134,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 468,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
}
],
"signatures": [
@@ -3149,7 +3149,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 468,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
}
],
"parameters": [
@@ -3179,7 +3179,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"type": {
@@ -3200,7 +3200,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 471,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
}
],
"type": {
@@ -3223,7 +3223,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
],
"type": {
@@ -3244,7 +3244,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 472,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
],
"type": {
@@ -3264,7 +3264,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 471,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L471"
}
]
}
@@ -3281,7 +3281,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 469,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L469"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L469"
}
],
"type": {
@@ -3301,7 +3301,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 468,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
}
],
"indexSignatures": [
@@ -3316,7 +3316,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 475,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
}
],
"parameters": [
@@ -3379,7 +3379,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"typeParameters": [
@@ -3402,7 +3402,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"indexSignatures": [
@@ -3417,7 +3417,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"parameters": [
@@ -3481,7 +3481,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 480,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
}
],
"type": {
@@ -3501,7 +3501,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 480,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
}
]
}
@@ -3526,7 +3526,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 481,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
],
"signatures": [
@@ -3541,7 +3541,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 481,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
],
"parameters": [
@@ -3571,7 +3571,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 483,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
}
],
"type": {
@@ -3592,7 +3592,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 484,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
}
],
"type": {
@@ -3615,7 +3615,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
],
"type": {
@@ -3636,7 +3636,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 485,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
}
],
"type": {
@@ -3656,7 +3656,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 484,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
}
]
}
@@ -3673,7 +3673,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 488,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
}
],
"type": {
@@ -3695,7 +3695,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 482,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L482"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L482"
}
],
"type": {
@@ -3715,7 +3715,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 481,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
]
}
@@ -3759,7 +3759,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L491"
}
],
"typeParameters": [
@@ -3828,7 +3828,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 493,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
}
],
"type": {
@@ -3851,7 +3851,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 493,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
}
]
}
@@ -3876,7 +3876,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
],
"signatures": [
@@ -3891,7 +3891,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
],
"parameters": [
@@ -3921,7 +3921,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 496,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
}
],
"type": {
@@ -3943,7 +3943,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 497,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
}
],
"type": {
@@ -3976,7 +3976,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
],
"type": {
@@ -3996,7 +3996,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
]
}
@@ -4040,7 +4040,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
}
],
"typeParameters": [
@@ -4063,7 +4063,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
}
],
"indexSignatures": [
@@ -4078,7 +4078,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 500,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L500"
}
],
"parameters": [
@@ -4142,7 +4142,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 502,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
}
],
"type": {
@@ -4165,7 +4165,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 502,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L502"
}
]
}
@@ -4190,7 +4190,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
],
"signatures": [
@@ -4205,7 +4205,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
],
"parameters": [
@@ -4235,7 +4235,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 505,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
}
],
"type": {
@@ -4257,7 +4257,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 506,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
}
],
"type": {
@@ -4290,7 +4290,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
],
"type": {
@@ -4310,7 +4310,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
]
}
@@ -4354,7 +4354,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
}
],
"typeParameters": [
@@ -4377,7 +4377,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
}
],
"indexSignatures": [
@@ -4392,7 +4392,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 509,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L509"
}
],
"parameters": [
@@ -4456,7 +4456,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 511,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
}
],
"type": {
@@ -4479,7 +4479,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 511,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
}
]
}
@@ -4504,7 +4504,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
],
"signatures": [
@@ -4519,7 +4519,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
],
"parameters": [
@@ -4549,7 +4549,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 514,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
}
],
"type": {
@@ -4571,7 +4571,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 515,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
}
],
"type": {
@@ -4604,7 +4604,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
],
"type": {
@@ -4624,7 +4624,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
]
}
@@ -4668,7 +4668,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
}
],
"typeParameters": [
@@ -4691,7 +4691,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
}
],
"indexSignatures": [
@@ -4706,7 +4706,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 518,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L518"
}
],
"parameters": [
@@ -4770,7 +4770,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 520,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
}
],
"type": {
@@ -4793,7 +4793,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 520,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
}
]
}
@@ -4818,7 +4818,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 521,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
}
],
"signatures": [
@@ -4833,7 +4833,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 521,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
}
],
"parameters": [
@@ -4863,7 +4863,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 523,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L523"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L523"
}
],
"type": {
@@ -4885,7 +4885,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 524,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
}
],
"type": {
@@ -4918,7 +4918,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 522,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
}
],
"type": {
@@ -4938,7 +4938,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 521,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L521"
}
]
}
@@ -4982,7 +4982,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
}
],
"typeParameters": [
@@ -5005,7 +5005,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
}
],
"indexSignatures": [
@@ -5020,7 +5020,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 527,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L527"
}
],
"parameters": [
@@ -5094,7 +5094,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 530,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
}
],
"signatures": [
@@ -5109,7 +5109,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 530,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L530"
}
],
"parameters": [
@@ -5156,7 +5156,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"signatures": [
@@ -5179,7 +5179,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"typeParameters": [
@@ -5202,7 +5202,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"indexSignatures": [
@@ -5217,7 +5217,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 381,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L381"
}
],
"parameters": [
@@ -5282,7 +5282,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 618,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
}
],
"signatures": [
@@ -5305,7 +5305,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 618,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L618"
}
],
"parameters": [
@@ -5351,7 +5351,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 621,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L621"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L621"
}
],
"type": {
@@ -5380,7 +5380,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 622,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L622"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L622"
}
],
"type": {
@@ -5407,7 +5407,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 620,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L620"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L620"
}
],
"type": {
@@ -5440,7 +5440,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 619,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L619"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L619"
}
],
"indexSignatures": [
@@ -5455,7 +5455,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 623,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L623"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L623"
}
],
"parameters": [
@@ -5507,7 +5507,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 625,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
}
],
"indexSignatures": [
@@ -5522,7 +5522,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 625,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L625"
}
],
"parameters": [
@@ -5580,7 +5580,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"signatures": [
@@ -5603,7 +5603,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"parameters": [
@@ -5628,7 +5628,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"signatures": [
@@ -5643,7 +5643,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"parameters": [
@@ -5722,7 +5722,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 746,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
}
],
"signatures": [
@@ -5745,7 +5745,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 746,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L746"
}
],
"type": {
@@ -5766,7 +5766,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 389,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
}
],
"signatures": [
@@ -5797,7 +5797,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 389,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
}
],
"parameters": [
@@ -5820,7 +5820,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 390,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
}
],
"indexSignatures": [
@@ -5835,7 +5835,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 390,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
}
],
"parameters": [
@@ -5879,7 +5879,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 391,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
}
],
"indexSignatures": [
@@ -5894,7 +5894,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 391,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L391"
}
],
"parameters": [
@@ -5952,7 +5952,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 707,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
}
],
"signatures": [
@@ -5983,7 +5983,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 707,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L707"
}
],
"parameters": [
@@ -6042,7 +6042,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"signatures": [
@@ -6065,7 +6065,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"parameters": [
@@ -6088,7 +6088,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"indexSignatures": [
@@ -6103,7 +6103,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 406,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
}
],
"parameters": [
@@ -6161,7 +6161,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"signatures": [
@@ -6184,7 +6184,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"parameters": [
@@ -6207,7 +6207,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"indexSignatures": [
@@ -6222,7 +6222,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 694,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L694"
}
],
"parameters": [
@@ -6275,7 +6275,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 164,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
}
]
},
@@ -6297,7 +6297,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L179"
}
],
"signatures": [
@@ -6331,7 +6331,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L179"
}
],
"parameters": [
@@ -6485,7 +6485,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"type": {
@@ -6508,7 +6508,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"signatures": [
@@ -6523,7 +6523,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"type": {
@@ -6569,7 +6569,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L103"
}
],
"type": {
@@ -6598,7 +6598,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L104"
}
],
"type": {
@@ -6627,7 +6627,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L106"
}
],
"type": {
@@ -6653,7 +6653,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 126,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L126"
}
],
"type": {
@@ -6684,7 +6684,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 124,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L124"
}
],
"type": {
@@ -6708,7 +6708,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 123,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L123"
}
],
"type": {
@@ -6732,7 +6732,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 107,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L107"
}
],
"type": {
@@ -6752,7 +6752,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"type": {
@@ -6995,7 +6995,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"type": {
@@ -7011,7 +7011,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"indexSignatures": [
@@ -7026,7 +7026,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"parameters": [
@@ -7063,7 +7063,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"type": {
@@ -7079,7 +7079,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"signatures": [
@@ -7094,7 +7094,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"parameters": [
@@ -7149,7 +7149,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L114"
}
],
"type": {
@@ -7169,7 +7169,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L115"
}
],
"type": {
@@ -7204,7 +7204,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 108,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L108"
}
],
"type": {
@@ -7224,7 +7224,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L121"
}
],
"type": {
@@ -7251,7 +7251,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L122"
}
],
"type": {
@@ -7277,7 +7277,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"type": {
@@ -7293,7 +7293,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"indexSignatures": [
@@ -7308,7 +7308,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"parameters": [
@@ -7345,7 +7345,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"type": {
@@ -7374,7 +7374,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L125"
}
],
"type": {
@@ -7398,7 +7398,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 119,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L119"
}
],
"type": {
@@ -7433,7 +7433,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L118"
}
],
"type": {
@@ -7453,7 +7453,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L127"
}
],
"type": {
@@ -7481,7 +7481,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L128"
}
],
"type": {
@@ -7507,7 +7507,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 129,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L129"
}
],
"type": {
@@ -7530,7 +7530,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 131,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L131"
}
],
"type": {
@@ -7557,7 +7557,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 132,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L132"
}
],
"type": {
@@ -7584,7 +7584,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 133,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L133"
}
],
"type": {
@@ -7611,7 +7611,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 130,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L130"
}
],
"type": {
@@ -7639,7 +7639,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 129,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L129"
}
]
}
@@ -7657,7 +7657,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L112"
}
],
"type": {
@@ -7677,7 +7677,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L113"
}
],
"type": {
@@ -7708,7 +7708,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L120"
}
],
"type": {
@@ -7730,7 +7730,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L142"
}
],
"type": {
@@ -7751,7 +7751,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L144"
}
],
"type": {
@@ -7777,7 +7777,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L143"
}
],
"type": {
@@ -7796,7 +7796,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L381"
}
],
"signatures": [
@@ -7837,7 +7837,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L381"
}
],
"parameters": [
@@ -7888,7 +7888,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L198"
}
],
"signatures": [
@@ -7911,7 +7911,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L198"
}
],
"type": {
@@ -7932,7 +7932,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 340,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L340"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L340"
}
],
"signatures": [
@@ -7955,7 +7955,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 340,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L340"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L340"
}
],
"type": {
@@ -7981,7 +7981,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L264"
}
],
"signatures": [
@@ -8004,7 +8004,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L264"
}
],
"parameters": [
@@ -8069,7 +8069,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L254"
}
],
"signatures": [
@@ -8103,7 +8103,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L254"
}
],
"type": {
@@ -8124,7 +8124,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L517"
}
],
"signatures": [
@@ -8147,7 +8147,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L517"
}
],
"type": {
@@ -8168,7 +8168,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 300,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L300"
}
],
"signatures": [
@@ -8191,7 +8191,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 300,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L300"
}
],
"type": {
@@ -8218,7 +8218,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L356"
}
],
"signatures": [
@@ -8249,7 +8249,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L356"
}
],
"type": {
@@ -8270,7 +8270,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 363,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L363"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L363"
}
],
"signatures": [
@@ -8301,7 +8301,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 363,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L363"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L363"
}
],
"type": {
@@ -8322,7 +8322,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L370"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L370"
}
],
"signatures": [
@@ -8353,7 +8353,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L370"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L370"
}
],
"type": {
@@ -8374,7 +8374,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L333"
}
],
"signatures": [
@@ -8405,7 +8405,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L333"
}
],
"parameters": [
@@ -8463,7 +8463,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"signatures": [
@@ -8486,7 +8486,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"parameters": [
@@ -8509,7 +8509,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"signatures": [
@@ -8524,7 +8524,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 511,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L511"
}
],
"parameters": [
@@ -8586,7 +8586,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 400,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L400"
}
],
"signatures": [
@@ -8609,7 +8609,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 400,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L400"
}
],
"parameters": [
@@ -8645,7 +8645,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 321,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L321"
}
],
"signatures": [
@@ -8668,7 +8668,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 321,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L321"
}
],
"type": {
@@ -8705,7 +8705,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 308,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L308"
}
],
"signatures": [
@@ -8728,7 +8728,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 308,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L308"
}
],
"parameters": [
@@ -8786,7 +8786,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 456,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L456"
}
],
"signatures": [
@@ -8809,7 +8809,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 456,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L456"
}
],
"type": {
@@ -8841,7 +8841,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 435,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L435"
}
],
"signatures": [
@@ -8899,7 +8899,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 435,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L435"
}
],
"parameters": [
@@ -8976,7 +8976,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 102,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L102"
}
]
},
@@ -8998,7 +8998,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"signatures": [
@@ -9032,7 +9032,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"parameters": [
@@ -9114,7 +9114,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
],
"type": {
@@ -9137,7 +9137,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L65"
}
],
"type": {
@@ -9161,7 +9161,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L66"
}
],
"type": {
@@ -9185,7 +9185,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -9201,7 +9201,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"signatures": [
@@ -9216,7 +9216,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -9240,7 +9240,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
]
}
@@ -9268,7 +9268,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 90,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L90"
}
],
"type": {
@@ -9290,7 +9290,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L63"
}
],
"type": {
@@ -9310,7 +9310,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L62"
}
],
"type": {
@@ -9339,7 +9339,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L61"
}
],
"type": {
@@ -9367,7 +9367,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L60"
}
],
"type": {
@@ -9394,7 +9394,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 59,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L59"
}
]
},
@@ -9427,7 +9427,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 167,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
}
],
"signatures": [
@@ -9461,7 +9461,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 167,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L167"
}
],
"parameters": [
@@ -9539,7 +9539,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 147,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
}
],
"signatures": [
@@ -9573,7 +9573,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 147,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L147"
}
],
"type": {
@@ -9687,7 +9687,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 182,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
}
],
"signatures": [
@@ -9721,7 +9721,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 182,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L182"
}
],
"type": {
@@ -9743,7 +9743,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
}
]
},
@@ -9767,7 +9767,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
}
],
"type": {
@@ -9788,7 +9788,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
}
],
"type": {
@@ -9809,7 +9809,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 5,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
}
],
"type": {
@@ -9830,7 +9830,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 4,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
}
],
"type": {
@@ -9851,7 +9851,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 2,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
}
],
"type": {
@@ -9872,7 +9872,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"type": {
@@ -9888,7 +9888,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"signatures": [
@@ -9903,7 +9903,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"parameters": [
@@ -9946,7 +9946,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
}
],
"type": {
@@ -9965,7 +9965,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"type": {
@@ -9988,7 +9988,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"signatures": [
@@ -10003,7 +10003,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"parameters": [
@@ -10057,7 +10057,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"type": {
@@ -10080,7 +10080,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"signatures": [
@@ -10095,7 +10095,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"parameters": [
@@ -10149,7 +10149,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"type": {
@@ -10172,7 +10172,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"signatures": [
@@ -10187,7 +10187,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"parameters": [
@@ -10241,7 +10241,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"type": {
@@ -10264,7 +10264,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"signatures": [
@@ -10279,7 +10279,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"parameters": [
@@ -10335,7 +10335,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 3,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
}
],
"type": {
@@ -10356,7 +10356,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 8,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
}
],
"type": {
@@ -10377,7 +10377,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
}
],
"type": {
@@ -10398,7 +10398,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 7,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
}
],
"type": {
@@ -10417,7 +10417,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"signatures": [
@@ -10440,7 +10440,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"parameters": [
@@ -10490,7 +10490,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"signatures": [
@@ -10513,7 +10513,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"parameters": [
@@ -10562,7 +10562,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"signatures": [
@@ -10585,7 +10585,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"parameters": [
@@ -10635,7 +10635,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"signatures": [
@@ -10658,7 +10658,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"parameters": [
@@ -10740,7 +10740,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 1,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
}
]
},
@@ -10778,7 +10778,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"signatures": [
@@ -10793,7 +10793,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L63"
}
],
"parameters": [
@@ -10869,7 +10869,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"indexSignatures": [
@@ -10884,7 +10884,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L65"
}
],
"parameters": [
@@ -10918,7 +10918,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
],
"type": {
@@ -10941,7 +10941,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
],
"type": {
@@ -10974,7 +10974,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -10999,7 +10999,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -11020,7 +11020,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -11046,7 +11046,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -11066,7 +11066,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
]
}
@@ -11093,7 +11093,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -11118,7 +11118,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -11139,7 +11139,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -11159,7 +11159,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
]
}
@@ -11186,7 +11186,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
}
],
"type": {
@@ -11206,7 +11206,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
]
}
@@ -11224,7 +11224,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
]
}
@@ -11241,7 +11241,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 125,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
}
],
"type": {
@@ -11273,7 +11273,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
],
"type": {
@@ -11298,7 +11298,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"type": {
@@ -11314,7 +11314,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"signatures": [
@@ -11366,7 +11366,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L82"
}
],
"type": {
@@ -11392,7 +11392,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 81,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L81"
}
],
"type": {
@@ -11418,7 +11418,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L89"
}
],
"type": {
@@ -11444,7 +11444,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"type": {
@@ -11460,7 +11460,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"indexSignatures": [
@@ -11475,7 +11475,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"parameters": [
@@ -11513,7 +11513,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"type": {
@@ -11529,7 +11529,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"signatures": [
@@ -11592,7 +11592,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L77"
}
],
"type": {
@@ -11613,7 +11613,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 87,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L87"
}
],
"type": {
@@ -11639,7 +11639,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L80"
}
],
"type": {
@@ -11665,7 +11665,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L88"
}
],
"type": {
@@ -11691,7 +11691,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"type": {
@@ -11707,7 +11707,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"indexSignatures": [
@@ -11722,7 +11722,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"parameters": [
@@ -11760,7 +11760,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L83"
}
],
"type": {
@@ -11786,7 +11786,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L76"
}
],
"type": {
@@ -11807,7 +11807,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L75"
}
],
"type": {
@@ -11830,7 +11830,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L79"
}
],
"type": {
@@ -11851,7 +11851,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L90"
}
],
"type": {
@@ -11872,7 +11872,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L91"
}
],
"type": {
@@ -11894,7 +11894,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
]
}
@@ -11911,7 +11911,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
],
"type": {
@@ -11934,7 +11934,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L35"
}
],
"type": {
@@ -11955,7 +11955,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L38"
}
],
"type": {
@@ -11974,7 +11974,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L36"
}
],
"type": {
@@ -11993,7 +11993,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L37"
}
],
"type": {
@@ -12012,7 +12012,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L34"
}
],
"type": {
@@ -12032,7 +12032,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
]
}
@@ -12049,7 +12049,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
],
"typeParameters": [
@@ -12104,7 +12104,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
}
],
"type": {
@@ -12136,7 +12136,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
}
],
"type": {
@@ -12163,7 +12163,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
}
],
"type": {
@@ -12192,7 +12192,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
}
],
"type": {
@@ -12212,7 +12212,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
]
}
@@ -12229,7 +12229,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"typeParameters": [
@@ -12252,7 +12252,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"indexSignatures": [
@@ -12267,7 +12267,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"parameters": [
@@ -12355,7 +12355,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"typeParameters": [
@@ -12378,7 +12378,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"indexSignatures": [
@@ -12393,7 +12393,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"parameters": [
@@ -12451,7 +12451,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 96,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
}
],
"type": {
@@ -12481,7 +12481,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
],
"type": {
@@ -12497,7 +12497,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
]
}
@@ -12514,7 +12514,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 98,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
}
],
"type": {
@@ -12548,7 +12548,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 95,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
}
]
}
@@ -12567,7 +12567,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"typeParameters": [
@@ -12590,7 +12590,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"indexSignatures": [
@@ -12605,7 +12605,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"parameters": [
@@ -12663,7 +12663,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 82,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
}
],
"type": {
@@ -12693,7 +12693,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 83,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
}
],
"type": {
@@ -12715,7 +12715,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
],
"type": {
@@ -12731,7 +12731,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
]
}
@@ -12749,7 +12749,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 81,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
}
]
}
@@ -12768,7 +12768,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"typeParameters": [
@@ -12791,7 +12791,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"indexSignatures": [
@@ -12806,7 +12806,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"parameters": [
@@ -12864,7 +12864,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 89,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
}
],
"type": {
@@ -12894,7 +12894,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 90,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
}
],
"type": {
@@ -12916,7 +12916,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 91,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
}
],
"type": {
@@ -12950,7 +12950,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 88,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
}
]
}
@@ -12969,7 +12969,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"typeParameters": [
@@ -12992,7 +12992,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"indexSignatures": [
@@ -13007,7 +13007,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"parameters": [
@@ -13053,7 +13053,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L20"
}
],
"type": {
@@ -13089,7 +13089,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L18"
}
],
"type": {
@@ -13119,7 +13119,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L19"
}
],
"type": {
@@ -13138,7 +13138,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L21"
}
],
"type": {
@@ -13175,7 +13175,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
]
}
@@ -13192,7 +13192,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"typeParameters": [
@@ -13215,7 +13215,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"indexSignatures": [
@@ -13230,7 +13230,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"parameters": [
@@ -13276,7 +13276,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L27"
}
],
"type": {
@@ -13312,7 +13312,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L25"
}
],
"type": {
@@ -13342,7 +13342,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L26"
}
],
"type": {
@@ -13361,7 +13361,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L28"
}
],
"type": {
@@ -13398,7 +13398,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 77,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
]
}
@@ -13415,7 +13415,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"typeParameters": [
@@ -13438,7 +13438,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -13453,7 +13453,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"parameters": [
@@ -13490,7 +13490,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
]
}
@@ -13510,7 +13510,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 75,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -13525,7 +13525,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimePresence.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimePresence.ts#L14"
}
],
"parameters": [
@@ -13578,7 +13578,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 41,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeClient.ts#L41"
}
],
"type": {
@@ -13612,7 +13612,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 148,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
}
],
"type": {
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/storage.json b/apps/docs/spec/enrichments/tsdoc_v2/storage.json
index d4ad4c928d340..d82b7dee4b236 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": 133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L133"
}
],
"type": {
@@ -73,7 +73,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L139"
}
],
"type": {
@@ -100,7 +100,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L135"
}
],
"type": {
@@ -127,7 +127,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L141"
}
],
"type": {
@@ -154,7 +154,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L143"
}
],
"type": {
@@ -181,7 +181,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L137"
}
],
"type": {
@@ -201,7 +201,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 131,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L131"
}
]
},
@@ -231,7 +231,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L48"
}
],
"signatures": [
@@ -246,7 +246,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L48"
}
],
"parameters": [
@@ -328,7 +328,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 45,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L45"
}
],
"type": {
@@ -352,7 +352,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 46,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L46"
}
],
"type": {
@@ -376,7 +376,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"signatures": [
@@ -391,7 +391,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"type": {
@@ -414,7 +414,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L63"
}
],
"type": {
@@ -434,7 +434,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L62"
}
],
"type": {
@@ -454,7 +454,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L64"
}
],
"type": {
@@ -474,7 +474,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L65"
}
],
"type": {
@@ -495,7 +495,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 61,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L61"
}
]
}
@@ -523,7 +523,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 44,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L44"
}
],
"extendedTypes": [
@@ -560,7 +560,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"signatures": [
@@ -603,7 +603,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"parameters": [
@@ -637,7 +637,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"indexSignatures": [
@@ -652,7 +652,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 28,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"parameters": [
@@ -945,7 +945,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L79"
}
],
"getSignature": {
@@ -988,7 +988,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L79"
}
],
"type": {
@@ -1011,7 +1011,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"getSignature": {
@@ -1054,7 +1054,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"type": {
@@ -1078,7 +1078,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"signatures": [
@@ -1141,7 +1141,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"parameters": [
@@ -1200,7 +1200,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 172,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
}
],
"type": {
@@ -1241,7 +1241,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 171,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
}
],
"type": {
@@ -1281,7 +1281,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
}
],
"type": {
@@ -1322,7 +1322,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 173,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
}
],
"type": {
@@ -1344,7 +1344,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 169,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
}
]
}
@@ -1382,7 +1382,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
}
],
"type": {
@@ -1418,7 +1418,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
}
],
"type": {
@@ -1438,7 +1438,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 178,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
}
]
}
@@ -1463,7 +1463,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 183,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
}
],
"type": {
@@ -1482,7 +1482,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 184,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
}
],
"type": {
@@ -1504,7 +1504,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 182,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
}
]
}
@@ -1541,7 +1541,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"signatures": [
@@ -1612,7 +1612,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"parameters": [
@@ -1666,7 +1666,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -1689,7 +1689,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -1709,7 +1709,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
]
}
@@ -1726,7 +1726,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 339,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
}
],
"type": {
@@ -1746,7 +1746,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 337,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
}
]
}
@@ -1771,7 +1771,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
}
],
"type": {
@@ -1790,7 +1790,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 343,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
}
],
"type": {
@@ -1812,7 +1812,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 341,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
}
]
}
@@ -1849,7 +1849,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"signatures": [
@@ -1912,7 +1912,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"parameters": [
@@ -1966,7 +1966,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -1989,7 +1989,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -2009,7 +2009,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
]
}
@@ -2026,7 +2026,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 299,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
}
],
"type": {
@@ -2046,7 +2046,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 297,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
]
}
@@ -2071,7 +2071,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 302,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
}
],
"type": {
@@ -2090,7 +2090,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 303,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
}
],
"type": {
@@ -2112,7 +2112,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 301,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
}
]
}
@@ -2147,7 +2147,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"signatures": [
@@ -2190,7 +2190,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"parameters": [
@@ -2237,7 +2237,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"signatures": [
@@ -2300,7 +2300,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"parameters": [
@@ -2354,7 +2354,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 117,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
}
],
"type": {
@@ -2375,7 +2375,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 118,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
}
],
"type": {
@@ -2395,7 +2395,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
}
]
}
@@ -2420,7 +2420,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 121,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
}
],
"type": {
@@ -2439,7 +2439,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 122,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
}
],
"type": {
@@ -2461,7 +2461,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 120,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
}
]
}
@@ -2498,7 +2498,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"signatures": [
@@ -2563,7 +2563,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"parameters": [
@@ -2653,7 +2653,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 66,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
}
],
"type": {
@@ -2677,7 +2677,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 67,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
}
],
"type": {
@@ -2697,7 +2697,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
}
]
}
@@ -2722,7 +2722,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 70,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
}
],
"type": {
@@ -2741,7 +2741,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 71,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
}
],
"type": {
@@ -2763,7 +2763,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 69,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
}
]
}
@@ -2801,7 +2801,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -2837,7 +2837,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -2911,7 +2911,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -2947,7 +2947,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -2980,7 +2980,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"signatures": [
@@ -3043,7 +3043,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"parameters": [
@@ -3102,7 +3102,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 244,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
}
],
"type": {
@@ -3143,7 +3143,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 243,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
}
],
"type": {
@@ -3183,7 +3183,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 242,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
}
],
"type": {
@@ -3203,7 +3203,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 241,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
}
]
}
@@ -3240,7 +3240,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -3263,7 +3263,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -3283,7 +3283,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
]
}
@@ -3300,7 +3300,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 249,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
}
],
"type": {
@@ -3320,7 +3320,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 247,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
}
]
}
@@ -3345,7 +3345,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 252,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
}
],
"type": {
@@ -3364,7 +3364,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
}
],
"type": {
@@ -3386,7 +3386,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 251,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
}
]
}
@@ -3448,7 +3448,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L11"
}
],
"extendedTypes": [
@@ -3486,7 +3486,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L17"
}
],
"signatures": [
@@ -3501,7 +3501,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L17"
}
],
"parameters": [
@@ -3589,7 +3589,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -3610,7 +3610,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -3634,7 +3634,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L11"
}
],
"extendedTypes": [
@@ -3692,7 +3692,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L77"
}
],
"signatures": [
@@ -3707,7 +3707,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L77"
}
],
"parameters": [
@@ -3778,7 +3778,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L75"
}
],
"type": {
@@ -3800,7 +3800,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -3827,7 +3827,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -3856,7 +3856,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L74"
}
],
"extendedTypes": [
@@ -3907,7 +3907,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L112"
}
],
"signatures": [
@@ -3922,7 +3922,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L112"
}
],
"parameters": [
@@ -3992,7 +3992,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 45,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L45"
}
],
"type": {
@@ -4018,7 +4018,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 46,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L46"
}
],
"type": {
@@ -4044,7 +4044,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"signatures": [
@@ -4061,7 +4061,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"type": {
@@ -4084,7 +4084,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L63"
}
],
"type": {
@@ -4104,7 +4104,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L62"
}
],
"type": {
@@ -4124,7 +4124,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L64"
}
],
"type": {
@@ -4144,7 +4144,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L65"
}
],
"type": {
@@ -4165,7 +4165,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 61,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L61"
}
]
}
@@ -4203,7 +4203,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L111"
}
],
"extendedTypes": [
@@ -4247,7 +4247,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L93"
}
],
"signatures": [
@@ -4262,7 +4262,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L93"
}
],
"parameters": [
@@ -4311,7 +4311,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -4338,7 +4338,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -4367,7 +4367,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 92,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L92"
}
],
"extendedTypes": [
@@ -4411,7 +4411,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L122"
}
],
"signatures": [
@@ -4426,7 +4426,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L122"
}
],
"parameters": [
@@ -4485,7 +4485,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L75"
}
],
"type": {
@@ -4512,7 +4512,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -4539,7 +4539,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -4568,7 +4568,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 121,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L121"
}
],
"extendedTypes": [
@@ -4614,7 +4614,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L42"
}
],
"type": {
@@ -4641,7 +4641,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L40"
}
],
"type": {
@@ -4668,7 +4668,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L36"
}
],
"type": {
@@ -4695,7 +4695,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L38"
}
],
"type": {
@@ -4722,7 +4722,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -4742,7 +4742,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 34,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L34"
}
]
},
@@ -4766,7 +4766,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L16"
}
],
"type": {
@@ -4788,7 +4788,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L17"
}
],
"type": {
@@ -4809,7 +4809,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L15"
}
],
"type": {
@@ -4828,7 +4828,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L11"
}
],
"type": {
@@ -4847,7 +4847,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L13"
}
],
"type": {
@@ -4866,7 +4866,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L14"
}
],
"type": {
@@ -4885,7 +4885,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L19"
}
],
"type": {
@@ -4906,7 +4906,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L12"
}
],
"type": {
@@ -4927,7 +4927,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -4947,7 +4947,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 10,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L10"
}
]
},
@@ -4985,7 +4985,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 468,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L468"
}
],
"type": {
@@ -5012,7 +5012,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 469,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L469"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L469"
}
],
"type": {
@@ -5042,7 +5042,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 467,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L467"
}
],
"type": {
@@ -5062,7 +5062,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 466,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L466"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L466"
}
]
},
@@ -5086,7 +5086,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L112"
}
],
"type": {
@@ -5106,7 +5106,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 111,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L111"
}
]
},
@@ -5146,7 +5146,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 281,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L281"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L281"
}
],
"type": {
@@ -5175,7 +5175,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 282,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L282"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L282"
}
],
"type": {
@@ -5195,7 +5195,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 280,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L280"
}
]
},
@@ -5233,7 +5233,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 565,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L565"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L565"
}
],
"type": {
@@ -5260,7 +5260,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 566,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L566"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L566"
}
],
"type": {
@@ -5282,7 +5282,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 564,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L564"
}
]
},
@@ -5314,7 +5314,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L215"
}
],
"type": {
@@ -5368,7 +5368,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 204,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L204"
}
],
"type": {
@@ -5393,7 +5393,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 200,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L200"
}
]
},
@@ -5415,7 +5415,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L49"
}
],
"type": {
@@ -5434,7 +5434,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L57"
}
],
"type": {
@@ -5455,7 +5455,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L53"
}
],
"type": {
@@ -5474,7 +5474,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L51"
}
],
"type": {
@@ -5502,7 +5502,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L55"
}
],
"type": {
@@ -5521,7 +5521,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L56"
}
],
"type": {
@@ -5555,7 +5555,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L48"
}
],
"type": {
@@ -5574,7 +5574,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L50"
}
],
"type": {
@@ -5593,7 +5593,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L52"
}
],
"type": {
@@ -5613,7 +5613,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 47,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L47"
}
]
},
@@ -5635,7 +5635,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L64"
}
],
"type": {
@@ -5656,7 +5656,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L70"
}
],
"type": {
@@ -5677,7 +5677,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L71"
}
],
"type": {
@@ -5696,7 +5696,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L66"
}
],
"type": {
@@ -5717,7 +5717,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -5736,7 +5736,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L61"
}
],
"type": {
@@ -5764,7 +5764,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 68,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L68"
}
],
"type": {
@@ -5785,7 +5785,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L73"
}
],
"type": {
@@ -5806,7 +5806,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L74"
}
],
"type": {
@@ -5840,7 +5840,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L63"
}
],
"type": {
@@ -5861,7 +5861,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L69"
}
],
"type": {
@@ -5880,7 +5880,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L65"
}
],
"type": {
@@ -5899,7 +5899,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L62"
}
],
"type": {
@@ -5921,7 +5921,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 60,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L60"
}
]
},
@@ -5961,7 +5961,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L86"
}
],
"type": {
@@ -6038,7 +6038,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L90"
}
],
"type": {
@@ -6067,7 +6067,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -6096,7 +6096,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 108,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L108"
}
],
"type": {
@@ -6140,7 +6140,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L103"
}
],
"type": {
@@ -6184,7 +6184,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -6204,7 +6204,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 82,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L82"
}
]
},
@@ -6242,7 +6242,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L434"
}
],
"type": {
@@ -6269,7 +6269,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 435,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L435"
}
],
"type": {
@@ -6301,7 +6301,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 436,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L436"
}
],
"type": {
@@ -6330,7 +6330,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 437,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L437"
}
],
"type": {
@@ -6357,7 +6357,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 433,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L433"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L433"
}
],
"type": {
@@ -6377,7 +6377,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 432,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L432"
}
]
},
@@ -6415,7 +6415,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 445,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L445"
}
],
"type": {
@@ -6440,7 +6440,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 444,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L444"
}
]
},
@@ -6464,7 +6464,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L23"
}
],
"type": {
@@ -6485,7 +6485,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L24"
}
],
"type": {
@@ -6506,7 +6506,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L27"
}
],
"type": {
@@ -6527,7 +6527,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L25"
}
],
"type": {
@@ -6565,7 +6565,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L26"
}
],
"type": {
@@ -6594,7 +6594,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L22"
}
]
},
@@ -6634,7 +6634,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L410"
}
],
"type": {
@@ -6663,7 +6663,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L411"
}
],
"type": {
@@ -6692,7 +6692,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 409,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L409"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L409"
}
],
"type": {
@@ -6719,7 +6719,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 408,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L408"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L408"
}
],
"type": {
@@ -6739,7 +6739,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 407,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L407"
}
]
},
@@ -6777,7 +6777,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 420,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L420"
}
],
"type": {
@@ -6802,7 +6802,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 420,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L420"
}
],
"type": {
@@ -6822,7 +6822,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 420,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L420"
}
]
}
@@ -6850,7 +6850,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L421"
}
],
"type": {
@@ -6870,7 +6870,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 419,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L419"
}
]
},
@@ -6910,7 +6910,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 386,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L386"
}
],
"type": {
@@ -6939,7 +6939,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 387,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L387"
}
],
"type": {
@@ -6968,7 +6968,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 385,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L385"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L385"
}
],
"type": {
@@ -6988,7 +6988,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 384,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L384"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L384"
}
]
},
@@ -7028,7 +7028,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L397"
}
],
"type": {
@@ -7055,7 +7055,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 396,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L396"
}
],
"type": {
@@ -7080,7 +7080,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 396,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L396"
}
],
"type": {
@@ -7100,7 +7100,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 396,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L396"
}
]
}
@@ -7119,7 +7119,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 395,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L395"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L395"
}
]
},
@@ -7157,7 +7157,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 486,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L486"
}
],
"type": {
@@ -7186,7 +7186,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 487,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L487"
}
],
"type": {
@@ -7215,7 +7215,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 488,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L488"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L488"
}
],
"type": {
@@ -7244,7 +7244,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 489,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L489"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L489"
}
],
"type": {
@@ -7273,7 +7273,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 490,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L490"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L490"
}
],
"type": {
@@ -7302,7 +7302,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L491"
}
],
"type": {
@@ -7331,7 +7331,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L492"
}
],
"type": {
@@ -7358,7 +7358,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -7378,7 +7378,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 484,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L484"
}
]
},
@@ -7418,7 +7418,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 502,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L502"
}
],
"type": {
@@ -7445,7 +7445,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L501"
}
],
"type": {
@@ -7470,7 +7470,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 500,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L500"
}
]
},
@@ -7492,7 +7492,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 220,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L220"
}
],
"type": {
@@ -7512,7 +7512,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 219,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L219"
}
]
},
@@ -7552,7 +7552,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 303,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L303"
}
],
"type": {
@@ -7575,7 +7575,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 302,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L302"
}
]
},
@@ -7613,7 +7613,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L456"
}
],
"type": {
@@ -7640,7 +7640,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L455"
}
],
"type": {
@@ -7667,7 +7667,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L457"
}
],
"type": {
@@ -7692,7 +7692,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 454,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L454"
}
]
},
@@ -7732,7 +7732,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 526,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L526"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L526"
}
],
"type": {
@@ -7761,7 +7761,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 523,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L523"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L523"
}
],
"type": {
@@ -7788,7 +7788,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 524,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L524"
}
],
"type": {
@@ -7819,7 +7819,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 527,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L527"
}
],
"type": {
@@ -7848,7 +7848,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 528,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L528"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L528"
}
],
"type": {
@@ -7877,7 +7877,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 525,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L525"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L525"
}
],
"type": {
@@ -7904,7 +7904,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L522"
}
],
"type": {
@@ -7924,7 +7924,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 521,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L521"
}
]
},
@@ -7964,7 +7964,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L538"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L538"
}
],
"type": {
@@ -7993,7 +7993,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L537"
}
],
"type": {
@@ -8018,7 +8018,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 536,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L536"
}
]
},
@@ -8061,7 +8061,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L120"
}
],
"type": {
@@ -8090,7 +8090,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L125"
}
],
"type": {
@@ -8119,7 +8119,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L135"
}
],
"type": {
@@ -8148,7 +8148,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L130"
}
],
"type": {
@@ -8170,7 +8170,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 115,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L115"
}
]
},
@@ -8192,7 +8192,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L183"
}
],
"type": {
@@ -8211,7 +8211,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L179"
}
],
"type": {
@@ -8230,7 +8230,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L180"
}
],
"type": {
@@ -8258,7 +8258,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 188,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L188"
}
],
"type": {
@@ -8277,7 +8277,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L184"
}
],
"type": {
@@ -8311,7 +8311,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -8330,7 +8330,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L182"
}
],
"type": {
@@ -8350,7 +8350,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 178,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L178"
}
]
},
@@ -8382,7 +8382,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 158,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L158"
}
],
"type": {
@@ -8422,7 +8422,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L148"
}
],
"type": {
@@ -8451,7 +8451,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 153,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L153"
}
],
"type": {
@@ -8491,7 +8491,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L175"
}
],
"type": {
@@ -8549,7 +8549,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L169"
}
],
"type": {
@@ -8569,7 +8569,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 143,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L143"
}
]
},
@@ -8591,7 +8591,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L195"
}
],
"type": {
@@ -8615,7 +8615,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 194,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L194"
}
],
"type": {
@@ -8636,7 +8636,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L197"
}
],
"type": {
@@ -8655,7 +8655,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 196,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L196"
}
],
"type": {
@@ -8680,7 +8680,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 193,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L193"
}
]
},
@@ -8704,7 +8704,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -8725,7 +8725,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L79"
}
],
"type": {
@@ -8745,7 +8745,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 77,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L77"
}
]
},
@@ -8767,7 +8767,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L139"
}
],
"type": {
@@ -8801,7 +8801,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L140"
}
],
"type": {
@@ -8830,7 +8830,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 138,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L138"
}
]
},
@@ -8854,7 +8854,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L8"
}
],
"type": {
@@ -8874,7 +8874,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 7,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L7"
}
]
},
@@ -8912,7 +8912,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 555,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L555"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L555"
}
],
"type": {
@@ -8943,7 +8943,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 556,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L556"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L556"
}
],
"type": {
@@ -8963,7 +8963,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 554,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L554"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L554"
}
],
"typeParameters": [
@@ -9004,7 +9004,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L251"
}
],
"type": {
@@ -9033,7 +9033,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L231"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L231"
}
],
"type": {
@@ -9062,7 +9062,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 244,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L244"
}
],
"type": {
@@ -9091,7 +9091,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L238"
}
],
"type": {
@@ -9133,7 +9133,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 227,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L227"
}
],
"type": {
@@ -9153,7 +9153,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 223,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L223"
}
]
},
@@ -9193,7 +9193,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L293"
}
],
"type": {
@@ -9222,7 +9222,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 294,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L294"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L294"
}
],
"type": {
@@ -9251,7 +9251,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L292"
}
],
"type": {
@@ -9271,7 +9271,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 291,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L291"
}
]
},
@@ -9309,7 +9309,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 343,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L343"
}
],
"type": {
@@ -9332,7 +9332,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 342,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L342"
}
]
},
@@ -9372,7 +9372,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 546,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L546"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L546"
}
],
"type": {
@@ -9397,7 +9397,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 545,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L545"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L545"
}
]
},
@@ -9437,7 +9437,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 334,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L334"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L334"
}
],
"type": {
@@ -9464,7 +9464,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L330"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L330"
}
],
"type": {
@@ -9491,7 +9491,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L331"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L331"
}
],
"type": {
@@ -9518,7 +9518,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 332,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L332"
}
],
"type": {
@@ -9547,7 +9547,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L328"
}
],
"type": {
@@ -9576,7 +9576,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L333"
}
],
"type": {
@@ -9605,7 +9605,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L329"
}
],
"type": {
@@ -9625,7 +9625,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 327,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L327"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L327"
}
]
},
@@ -9665,7 +9665,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 373,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L373"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L373"
}
],
"type": {
@@ -9696,7 +9696,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 375,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L375"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L375"
}
],
"type": {
@@ -9723,7 +9723,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 372,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L372"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L372"
}
],
"type": {
@@ -9752,7 +9752,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 374,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L374"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L374"
}
],
"type": {
@@ -9774,7 +9774,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 371,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L371"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L371"
}
]
},
@@ -9812,7 +9812,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L360"
}
],
"type": {
@@ -9841,7 +9841,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L359"
}
],
"type": {
@@ -9870,7 +9870,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L361"
}
],
"type": {
@@ -9892,7 +9892,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 358,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L358"
}
]
},
@@ -9915,7 +9915,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 573,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L573"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L573"
}
],
"typeParameters": [
@@ -9973,7 +9973,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 8,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L8"
}
],
"type": {
@@ -10001,7 +10001,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 258,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L258"
}
],
"typeParameters": [
@@ -10104,7 +10104,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 315,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L315"
}
],
"type": {
@@ -10136,7 +10136,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 262,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L262"
}
],
"typeParameters": [
@@ -10171,7 +10171,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 264,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L264"
}
],
"type": {
@@ -10193,7 +10193,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 265,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L265"
}
],
"type": {
@@ -10213,7 +10213,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 263,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L263"
}
]
}
@@ -10238,7 +10238,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 268,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L268"
}
],
"type": {
@@ -10257,7 +10257,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 269,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L269"
}
],
"type": {
@@ -10279,7 +10279,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 267,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L267"
}
]
}
@@ -10306,7 +10306,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 5,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L5"
}
],
"type": {
@@ -10334,7 +10334,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 191,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L191"
}
],
"type": {
@@ -10391,7 +10391,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 310,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L310"
}
],
"type": {
@@ -10418,7 +10418,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 509,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L509"
}
],
"type": {
@@ -10460,7 +10460,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 350,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L350"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L350"
}
],
"type": {
@@ -10494,7 +10494,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L36"
}
],
"signatures": [
@@ -10528,7 +10528,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L36"
}
],
"parameters": [
@@ -10577,7 +10577,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 103,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L103"
}
],
"signatures": [
@@ -10611,7 +10611,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 103,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L103"
}
],
"parameters": [
@@ -10660,7 +10660,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 15,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L15"
}
],
"target": 891
@@ -10676,7 +10676,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 3,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L3"
}
],
"target": 48
@@ -10692,7 +10692,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L7"
}
],
"target": 544
@@ -10708,7 +10708,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 11,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L11"
}
],
"target": 531
@@ -10724,7 +10724,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L8"
}
],
"target": 599
@@ -10740,7 +10740,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L9"
}
],
"target": 667
@@ -10781,7 +10781,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L1"
}
]
},
@@ -10810,7 +10810,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"signatures": [
@@ -10825,7 +10825,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"parameters": [
@@ -10848,7 +10848,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -10863,7 +10863,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"type": {
@@ -10926,7 +10926,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
}
],
"type": {
@@ -10951,7 +10951,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -10966,7 +10966,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"type": {
@@ -10990,7 +10990,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"signatures": [
@@ -11024,7 +11024,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"typeParameters": [
@@ -11077,7 +11077,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"signatures": [
@@ -11092,7 +11092,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"parameters": [
@@ -11210,7 +11210,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -11244,7 +11244,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"parameters": [
@@ -11284,7 +11284,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -11299,7 +11299,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"type": {
@@ -11366,7 +11366,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"signatures": [
@@ -11400,7 +11400,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"typeParameters": [
@@ -11477,7 +11477,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"signatures": [
@@ -11492,7 +11492,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"parameters": [
@@ -11594,7 +11594,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"signatures": [
@@ -11609,7 +11609,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"parameters": [
@@ -11726,7 +11726,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 5,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
}
],
"implementedTypes": [
@@ -11772,7 +11772,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
}
]
},
@@ -11809,7 +11809,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"signatures": [
@@ -11853,7 +11853,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"parameters": [
@@ -11903,7 +11903,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"indexSignatures": [
@@ -11918,7 +11918,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"parameters": [
@@ -12205,7 +12205,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 79,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
}
],
"signatures": [
@@ -12267,7 +12267,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 79,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
}
],
"parameters": [
@@ -12321,7 +12321,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 81,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81"
}
],
"type": {
@@ -12342,7 +12342,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 82,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82"
}
],
"type": {
@@ -12362,7 +12362,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 80,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
}
]
}
@@ -12387,7 +12387,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 85,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85"
}
],
"type": {
@@ -12406,7 +12406,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 86,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86"
}
],
"type": {
@@ -12428,7 +12428,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L84"
}
]
}
@@ -12453,7 +12453,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
}
],
"signatures": [
@@ -12515,7 +12515,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
}
],
"parameters": [
@@ -12569,7 +12569,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 205,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
}
],
"type": {
@@ -12592,7 +12592,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 205,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
}
],
"type": {
@@ -12612,7 +12612,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 205,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
}
]
}
@@ -12629,7 +12629,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L206"
}
],
"type": {
@@ -12649,7 +12649,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L204"
}
]
}
@@ -12674,7 +12674,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 209,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L209"
}
],
"type": {
@@ -12693,7 +12693,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 210,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L210"
}
],
"type": {
@@ -12715,7 +12715,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 208,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L208"
}
]
}
@@ -12740,7 +12740,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 346,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
}
],
"signatures": [
@@ -12914,7 +12914,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 346,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
}
],
"parameters": [
@@ -12958,7 +12958,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
}
],
"signatures": [
@@ -13020,7 +13020,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
}
],
"parameters": [
@@ -13070,7 +13070,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 141,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L141"
}
],
"type": {
@@ -13099,7 +13099,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 142,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L142"
}
],
"type": {
@@ -13128,7 +13128,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 145,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L145"
}
],
"type": {
@@ -13157,7 +13157,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 143,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L143"
}
],
"type": {
@@ -13199,7 +13199,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 144,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L144"
}
],
"type": {
@@ -13228,7 +13228,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 140,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
}
]
}
@@ -13265,7 +13265,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 148,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L148"
}
],
"type": {
@@ -13289,7 +13289,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 149,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
],
"type": {
@@ -13309,7 +13309,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L147"
}
]
}
@@ -13334,7 +13334,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 152,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152"
}
],
"type": {
@@ -13353,7 +13353,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 153,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153"
}
],
"type": {
@@ -13375,7 +13375,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 151,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151"
}
]
}
@@ -13403,7 +13403,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -13439,7 +13439,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -13513,7 +13513,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -13549,7 +13549,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -13595,7 +13595,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 21,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21"
}
],
"extendedTypes": [
@@ -13629,7 +13629,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13"
}
],
"type": {
@@ -13699,7 +13699,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1"
}
]
},
@@ -13728,7 +13728,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
}
],
"signatures": [
@@ -13743,7 +13743,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
}
],
"parameters": [
@@ -13777,7 +13777,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
}
],
"indexSignatures": [
@@ -13792,7 +13792,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 11,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
}
],
"parameters": [
@@ -14086,7 +14086,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"signatures": [
@@ -14147,7 +14147,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"parameters": [
@@ -14206,7 +14206,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 172,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
}
],
"type": {
@@ -14247,7 +14247,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 171,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
}
],
"type": {
@@ -14287,7 +14287,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
}
],
"type": {
@@ -14328,7 +14328,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 173,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
}
],
"type": {
@@ -14350,7 +14350,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 169,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
}
]
}
@@ -14388,7 +14388,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
}
],
"type": {
@@ -14424,7 +14424,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
}
],
"type": {
@@ -14444,7 +14444,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 178,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
}
]
}
@@ -14469,7 +14469,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 183,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
}
],
"type": {
@@ -14488,7 +14488,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 184,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
}
],
"type": {
@@ -14510,7 +14510,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 182,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
}
]
}
@@ -14535,7 +14535,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"signatures": [
@@ -14604,7 +14604,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"parameters": [
@@ -14658,7 +14658,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -14681,7 +14681,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -14701,7 +14701,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
]
}
@@ -14718,7 +14718,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 339,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
}
],
"type": {
@@ -14738,7 +14738,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 337,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
}
]
}
@@ -14763,7 +14763,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
}
],
"type": {
@@ -14782,7 +14782,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 343,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
}
],
"type": {
@@ -14804,7 +14804,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 341,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
}
]
}
@@ -14829,7 +14829,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"signatures": [
@@ -14890,7 +14890,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"parameters": [
@@ -14944,7 +14944,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -14967,7 +14967,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -14987,7 +14987,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
]
}
@@ -15004,7 +15004,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 299,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
}
],
"type": {
@@ -15024,7 +15024,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 297,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
]
}
@@ -15049,7 +15049,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 302,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
}
],
"type": {
@@ -15068,7 +15068,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 303,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
}
],
"type": {
@@ -15090,7 +15090,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 301,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
}
]
}
@@ -15115,7 +15115,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"signatures": [
@@ -15176,7 +15176,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"parameters": [
@@ -15230,7 +15230,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 117,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
}
],
"type": {
@@ -15251,7 +15251,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 118,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
}
],
"type": {
@@ -15271,7 +15271,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
}
]
}
@@ -15296,7 +15296,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 121,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
}
],
"type": {
@@ -15315,7 +15315,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 122,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
}
],
"type": {
@@ -15337,7 +15337,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 120,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
}
]
}
@@ -15362,7 +15362,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"signatures": [
@@ -15425,7 +15425,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"parameters": [
@@ -15515,7 +15515,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 66,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
}
],
"type": {
@@ -15539,7 +15539,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 67,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
}
],
"type": {
@@ -15559,7 +15559,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
}
]
}
@@ -15584,7 +15584,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 70,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
}
],
"type": {
@@ -15603,7 +15603,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 71,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
}
],
"type": {
@@ -15625,7 +15625,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 69,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
}
]
}
@@ -15653,7 +15653,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -15689,7 +15689,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -15763,7 +15763,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -15799,7 +15799,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -15830,7 +15830,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"signatures": [
@@ -15891,7 +15891,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"parameters": [
@@ -15950,7 +15950,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 244,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
}
],
"type": {
@@ -15991,7 +15991,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 243,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
}
],
"type": {
@@ -16031,7 +16031,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 242,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
}
],
"type": {
@@ -16051,7 +16051,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 241,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
}
]
}
@@ -16088,7 +16088,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -16111,7 +16111,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -16131,7 +16131,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
]
}
@@ -16148,7 +16148,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 249,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
}
],
"type": {
@@ -16168,7 +16168,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 247,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
}
]
}
@@ -16193,7 +16193,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 252,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
}
],
"type": {
@@ -16212,7 +16212,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
}
],
"type": {
@@ -16234,7 +16234,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 251,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
}
]
}
@@ -16274,7 +16274,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
}
],
"extendedTypes": [
@@ -16316,7 +16316,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
}
]
},
@@ -16345,7 +16345,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
}
],
"signatures": [
@@ -16360,7 +16360,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
}
],
"parameters": [
@@ -16394,7 +16394,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
}
],
"indexSignatures": [
@@ -16409,7 +16409,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 51,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
}
],
"parameters": [
@@ -16701,7 +16701,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 500,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
}
],
"signatures": [
@@ -16762,7 +16762,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 500,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
}
],
"parameters": [
@@ -16874,7 +16874,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 506,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
}
],
"type": {
@@ -16897,7 +16897,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 506,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
}
],
"type": {
@@ -16917,7 +16917,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 506,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
}
]
}
@@ -16934,7 +16934,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 507,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L507"
}
],
"type": {
@@ -16954,7 +16954,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 505,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L505"
}
]
}
@@ -16979,7 +16979,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 510,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L510"
}
],
"type": {
@@ -16998,7 +16998,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 511,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L511"
}
],
"type": {
@@ -17020,7 +17020,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 509,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L509"
}
]
}
@@ -17045,7 +17045,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"signatures": [
@@ -17106,7 +17106,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"parameters": [
@@ -17173,7 +17173,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 307,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
}
],
"type": {
@@ -17193,7 +17193,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 307,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
}
]
}
@@ -17230,7 +17230,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -17253,7 +17253,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -17272,7 +17272,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -17291,7 +17291,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -17311,7 +17311,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
]
}
@@ -17328,7 +17328,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 311,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L311"
}
],
"type": {
@@ -17348,7 +17348,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 309,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L309"
}
]
}
@@ -17373,7 +17373,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 314,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L314"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L314"
}
],
"type": {
@@ -17392,7 +17392,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 315,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
}
],
"type": {
@@ -17414,7 +17414,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 313,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L313"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L313"
}
]
}
@@ -17439,7 +17439,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 581,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
}
],
"signatures": [
@@ -17520,7 +17520,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 581,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
}
],
"parameters": [
@@ -17616,7 +17616,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 584,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
}
],
"type": {
@@ -17654,7 +17654,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 584,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
}
],
"type": {
@@ -17676,7 +17676,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 584,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
}
]
}
@@ -17713,7 +17713,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 587,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
}
],
"type": {
@@ -17736,7 +17736,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 587,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
}
],
"type": {
@@ -17756,7 +17756,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 587,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
}
]
}
@@ -17773,7 +17773,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 588,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L588"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L588"
}
],
"type": {
@@ -17793,7 +17793,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 586,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L586"
}
]
}
@@ -17818,7 +17818,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 591,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L591"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L591"
}
],
"type": {
@@ -17837,7 +17837,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 592,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L592"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L592"
}
],
"type": {
@@ -17859,7 +17859,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 590,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L590"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L590"
}
]
}
@@ -17884,7 +17884,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 650,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
}
],
"signatures": [
@@ -17945,7 +17945,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 650,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
}
],
"parameters": [
@@ -18042,7 +18042,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 653,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
}
],
"type": {
@@ -18071,7 +18071,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 653,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
}
]
}
@@ -18108,7 +18108,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -18133,7 +18133,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -18161,7 +18161,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -18189,7 +18189,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -18209,7 +18209,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
]
}
@@ -18227,7 +18227,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 657,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L657"
}
],
"type": {
@@ -18247,7 +18247,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 655,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L655"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L655"
}
]
}
@@ -18272,7 +18272,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 660,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L660"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L660"
}
],
"type": {
@@ -18291,7 +18291,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 661,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L661"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L661"
}
],
"type": {
@@ -18313,7 +18313,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 659,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L659"
}
]
}
@@ -18338,7 +18338,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
],
"signatures": [
@@ -18437,7 +18437,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
],
"typeParameters": [
@@ -18469,7 +18469,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
],
"type": {
@@ -18491,7 +18491,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
]
}
@@ -18587,7 +18587,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 816,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
}
],
"signatures": [
@@ -18640,7 +18640,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 816,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
}
],
"parameters": [
@@ -18702,7 +18702,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 818,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L818"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L818"
}
],
"type": {
@@ -18721,7 +18721,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 819,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L819"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L819"
}
],
"type": {
@@ -18741,7 +18741,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 817,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L817"
}
]
}
@@ -18766,7 +18766,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 822,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L822"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L822"
}
],
"type": {
@@ -18785,7 +18785,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 823,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L823"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L823"
}
],
"type": {
@@ -18807,7 +18807,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 821,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L821"
}
]
}
@@ -18832,7 +18832,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 900,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
}
],
"signatures": [
@@ -18913,7 +18913,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 900,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
}
],
"parameters": [
@@ -18982,7 +18982,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 902,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
}
],
"type": {
@@ -19020,7 +19020,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 902,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
}
],
"type": {
@@ -19042,7 +19042,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 902,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
}
]
}
@@ -19069,7 +19069,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
],
"type": {
@@ -19092,7 +19092,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
],
"type": {
@@ -19112,7 +19112,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
]
}
@@ -19130,7 +19130,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
]
}
@@ -19149,7 +19149,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 780,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
}
],
"signatures": [
@@ -19202,7 +19202,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 780,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
}
],
"parameters": [
@@ -19264,7 +19264,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 782,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L782"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L782"
}
],
"type": {
@@ -19293,7 +19293,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 783,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L783"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L783"
}
],
"type": {
@@ -19313,7 +19313,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 781,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L781"
}
]
}
@@ -19338,7 +19338,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 786,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L786"
}
],
"type": {
@@ -19357,7 +19357,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 787,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L787"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L787"
}
],
"type": {
@@ -19379,7 +19379,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 785,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L785"
}
]
}
@@ -19404,7 +19404,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1098,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
}
],
"signatures": [
@@ -19475,7 +19475,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1098,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
}
],
"parameters": [
@@ -19577,7 +19577,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1104,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1104"
}
],
"type": {
@@ -19601,7 +19601,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1105,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1105"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1105"
}
],
"type": {
@@ -19621,7 +19621,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1103,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1103"
}
]
}
@@ -19646,7 +19646,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1108,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1108"
}
],
"type": {
@@ -19665,7 +19665,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1109,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1109"
}
],
"type": {
@@ -19687,7 +19687,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1107,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1107"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1107"
}
]
}
@@ -19712,7 +19712,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1131,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
}
],
"signatures": [
@@ -19747,7 +19747,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1131,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
}
],
"parameters": [
@@ -19820,7 +19820,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1136,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1136"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1136"
}
],
"type": {
@@ -19841,7 +19841,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1137,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1137"
}
],
"type": {
@@ -19861,7 +19861,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1135,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1135"
}
]
}
@@ -19886,7 +19886,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1140,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1140"
}
],
"type": {
@@ -19905,7 +19905,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1141,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1141"
}
],
"type": {
@@ -19927,7 +19927,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1139,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1139"
}
]
}
@@ -19952,7 +19952,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 444,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
}
],
"signatures": [
@@ -20013,7 +20013,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 444,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
}
],
"parameters": [
@@ -20125,7 +20125,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 450,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
}
],
"type": {
@@ -20148,7 +20148,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 450,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
}
],
"type": {
@@ -20168,7 +20168,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 450,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
}
]
}
@@ -20185,7 +20185,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 451,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L451"
}
],
"type": {
@@ -20205,7 +20205,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 449,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L449"
}
]
}
@@ -20230,7 +20230,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 454,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L454"
}
],
"type": {
@@ -20249,7 +20249,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 455,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L455"
}
],
"type": {
@@ -20271,7 +20271,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 453,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L453"
}
]
}
@@ -20296,7 +20296,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 956,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
}
],
"signatures": [
@@ -20357,7 +20357,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 956,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
}
],
"parameters": [
@@ -20422,7 +20422,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 958,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L958"
}
],
"type": {
@@ -20446,7 +20446,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 959,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L959"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L959"
}
],
"type": {
@@ -20466,7 +20466,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 957,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L957"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L957"
}
]
}
@@ -20491,7 +20491,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 962,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L962"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L962"
}
],
"type": {
@@ -20510,7 +20510,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 963,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L963"
}
],
"type": {
@@ -20532,7 +20532,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 961,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L961"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L961"
}
]
}
@@ -20560,7 +20560,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -20596,7 +20596,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -20670,7 +20670,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -20706,7 +20706,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -20737,7 +20737,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
}
],
"signatures": [
@@ -20752,7 +20752,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
}
],
"parameters": [
@@ -20786,7 +20786,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 390,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
}
],
"signatures": [
@@ -20857,7 +20857,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 390,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
}
],
"parameters": [
@@ -21093,7 +21093,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -21116,7 +21116,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -21135,7 +21135,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -21154,7 +21154,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -21174,7 +21174,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
]
}
@@ -21191,7 +21191,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 407,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L407"
}
],
"type": {
@@ -21211,7 +21211,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 405,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L405"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L405"
}
]
}
@@ -21236,7 +21236,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 410,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L410"
}
],
"type": {
@@ -21255,7 +21255,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L411"
}
],
"type": {
@@ -21277,7 +21277,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 409,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L409"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L409"
}
]
}
@@ -21302,7 +21302,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 188,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
}
],
"signatures": [
@@ -21373,7 +21373,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 188,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
}
],
"parameters": [
@@ -21482,7 +21482,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -21505,7 +21505,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -21524,7 +21524,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -21543,7 +21543,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -21563,7 +21563,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
]
}
@@ -21580,7 +21580,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 195,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L195"
}
],
"type": {
@@ -21600,7 +21600,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 193,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L193"
}
]
}
@@ -21625,7 +21625,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
}
],
"type": {
@@ -21644,7 +21644,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L199"
}
],
"type": {
@@ -21666,7 +21666,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L197"
}
]
}
@@ -21691,7 +21691,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
}
],
"signatures": [
@@ -21760,7 +21760,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
}
],
"parameters": [
@@ -21916,7 +21916,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -21935,7 +21935,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -21957,7 +21957,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
]
}
@@ -21982,7 +21982,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -22005,7 +22005,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 271,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
}
],
"type": {
@@ -22025,7 +22025,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
}
],
"type": {
@@ -22046,7 +22046,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 271,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
}
]
}
@@ -22063,7 +22063,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -22083,7 +22083,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
]
}
@@ -22128,7 +22128,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 46,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L46"
}
],
"extendedTypes": [
@@ -22163,7 +22163,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
}
]
},
@@ -22205,7 +22205,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
}
],
"signatures": [
@@ -22249,7 +22249,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
}
],
"parameters": [
@@ -22347,7 +22347,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
}
],
"signatures": [
@@ -22400,7 +22400,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
}
],
"parameters": [
@@ -22471,7 +22471,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
}
],
"signatures": [
@@ -22524,7 +22524,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
}
],
"parameters": [
@@ -22595,7 +22595,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
}
],
"signatures": [
@@ -22648,7 +22648,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
}
],
"parameters": [
@@ -22692,7 +22692,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
],
"signatures": [
@@ -22745,7 +22745,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
],
"parameters": [
@@ -22800,7 +22800,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
],
"type": {
@@ -22822,7 +22822,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
]
}
@@ -22859,7 +22859,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
}
],
"signatures": [
@@ -22912,7 +22912,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
}
],
"parameters": [
@@ -22991,7 +22991,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -23028,7 +23028,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -23102,7 +23102,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -23139,7 +23139,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -23185,7 +23185,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 80,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80"
}
],
"extendedTypes": [
@@ -23224,7 +23224,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
}
],
"signatures": [
@@ -23268,7 +23268,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
}
],
"parameters": [
@@ -23302,7 +23302,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 258,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
}
],
"indexSignatures": [
@@ -23317,7 +23317,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 258,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
}
],
"parameters": [
@@ -23605,7 +23605,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 293,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
}
],
"signatures": [
@@ -23658,7 +23658,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 293,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
}
],
"parameters": [
@@ -23746,7 +23746,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 369,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
}
],
"signatures": [
@@ -23799,7 +23799,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 369,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
}
],
"parameters": [
@@ -23870,7 +23870,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 346,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
}
],
"signatures": [
@@ -23923,7 +23923,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 346,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
}
],
"parameters": [
@@ -23978,7 +23978,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 58,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
}
],
"type": {
@@ -24000,7 +24000,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 58,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
}
]
}
@@ -24037,7 +24037,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 404,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
}
],
"signatures": [
@@ -24090,7 +24090,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 404,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
}
],
"parameters": [
@@ -24134,7 +24134,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 319,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
}
],
"signatures": [
@@ -24187,7 +24187,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 319,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
}
],
"parameters": [
@@ -24281,7 +24281,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -24318,7 +24318,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -24392,7 +24392,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -24429,7 +24429,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -24475,7 +24475,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 240,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L240"
}
],
"extendedTypes": [
@@ -24514,7 +24514,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 442,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
}
],
"signatures": [
@@ -24558,7 +24558,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 442,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
}
],
"parameters": [
@@ -24592,7 +24592,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 444,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
}
],
"indexSignatures": [
@@ -24607,7 +24607,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 444,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
}
],
"parameters": [
@@ -24906,7 +24906,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 607,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
}
],
"signatures": [
@@ -24959,7 +24959,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 607,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
}
],
"parameters": [
@@ -25056,7 +25056,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 511,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
}
],
"signatures": [
@@ -25109,7 +25109,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 511,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
}
],
"parameters": [
@@ -25208,7 +25208,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 541,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
}
],
"signatures": [
@@ -25261,7 +25261,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 541,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
}
],
"parameters": [
@@ -25361,7 +25361,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 481,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
}
],
"signatures": [
@@ -25414,7 +25414,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 481,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
}
],
"parameters": [
@@ -25511,7 +25511,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 576,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
}
],
"signatures": [
@@ -25564,7 +25564,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 576,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
}
],
"parameters": [
@@ -25666,7 +25666,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -25703,7 +25703,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -25777,7 +25777,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -25814,7 +25814,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -25860,7 +25860,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 424,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L424"
}
],
"extendedTypes": [
@@ -25910,7 +25910,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35"
}
],
"type": {
@@ -26148,7 +26148,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
}
],
"type": {
@@ -26164,7 +26164,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
}
],
"indexSignatures": [
@@ -26179,7 +26179,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 30,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
}
],
"parameters": [
@@ -26216,7 +26216,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 26,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26"
}
]
}
@@ -26236,7 +26236,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1"
}
]
},
@@ -26265,7 +26265,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"signatures": [
@@ -26280,7 +26280,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"parameters": [
@@ -26303,7 +26303,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"signatures": [
@@ -26318,7 +26318,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"type": {
@@ -26379,7 +26379,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -26413,7 +26413,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"typeParameters": [
@@ -26496,7 +26496,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"signatures": [
@@ -26511,7 +26511,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"parameters": [
@@ -26619,7 +26619,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -26634,7 +26634,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"parameters": [
@@ -26747,7 +26747,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 4,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
}
],
"implementedTypes": [
@@ -26793,7 +26793,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
}
]
},
@@ -26808,7 +26808,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorBucketApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1"
}
]
},
@@ -26823,7 +26823,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorDataApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorDataApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorDataApi.ts#L1"
}
]
},
@@ -26865,7 +26865,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25"
}
],
"type": {
@@ -26888,7 +26888,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26"
}
],
"type": {
@@ -26911,7 +26911,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27"
}
],
"type": {
@@ -26936,7 +26936,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24"
}
],
"type": {
@@ -26961,7 +26961,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28"
}
],
"type": {
@@ -26986,7 +26986,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23"
}
],
"type": {
@@ -27006,7 +27006,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22"
}
]
}
@@ -27022,7 +27022,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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 d4ad4c928d340..d82b7dee4b236 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": 133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L133"
}
],
"type": {
@@ -73,7 +73,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L139"
}
],
"type": {
@@ -100,7 +100,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L135"
}
],
"type": {
@@ -127,7 +127,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L141"
}
],
"type": {
@@ -154,7 +154,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L143"
}
],
"type": {
@@ -181,7 +181,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L137"
}
],
"type": {
@@ -201,7 +201,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 131,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L131"
}
]
},
@@ -231,7 +231,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L48"
}
],
"signatures": [
@@ -246,7 +246,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L48"
}
],
"parameters": [
@@ -328,7 +328,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 45,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L45"
}
],
"type": {
@@ -352,7 +352,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 46,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L46"
}
],
"type": {
@@ -376,7 +376,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"signatures": [
@@ -391,7 +391,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"type": {
@@ -414,7 +414,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L63"
}
],
"type": {
@@ -434,7 +434,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L62"
}
],
"type": {
@@ -454,7 +454,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L64"
}
],
"type": {
@@ -474,7 +474,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L65"
}
],
"type": {
@@ -495,7 +495,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 61,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L61"
}
]
}
@@ -523,7 +523,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 44,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L44"
}
],
"extendedTypes": [
@@ -560,7 +560,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"signatures": [
@@ -603,7 +603,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"parameters": [
@@ -637,7 +637,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 28,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"indexSignatures": [
@@ -652,7 +652,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 28,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"parameters": [
@@ -945,7 +945,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L79"
}
],
"getSignature": {
@@ -988,7 +988,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L79"
}
],
"type": {
@@ -1011,7 +1011,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"getSignature": {
@@ -1054,7 +1054,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"type": {
@@ -1078,7 +1078,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"signatures": [
@@ -1141,7 +1141,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"parameters": [
@@ -1200,7 +1200,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 172,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
}
],
"type": {
@@ -1241,7 +1241,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 171,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
}
],
"type": {
@@ -1281,7 +1281,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
}
],
"type": {
@@ -1322,7 +1322,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 173,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
}
],
"type": {
@@ -1344,7 +1344,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 169,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
}
]
}
@@ -1382,7 +1382,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
}
],
"type": {
@@ -1418,7 +1418,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
}
],
"type": {
@@ -1438,7 +1438,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 178,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
}
]
}
@@ -1463,7 +1463,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 183,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
}
],
"type": {
@@ -1482,7 +1482,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 184,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
}
],
"type": {
@@ -1504,7 +1504,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 182,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
}
]
}
@@ -1541,7 +1541,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"signatures": [
@@ -1612,7 +1612,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"parameters": [
@@ -1666,7 +1666,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -1689,7 +1689,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -1709,7 +1709,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
]
}
@@ -1726,7 +1726,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 339,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
}
],
"type": {
@@ -1746,7 +1746,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 337,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
}
]
}
@@ -1771,7 +1771,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
}
],
"type": {
@@ -1790,7 +1790,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 343,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
}
],
"type": {
@@ -1812,7 +1812,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 341,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
}
]
}
@@ -1849,7 +1849,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"signatures": [
@@ -1912,7 +1912,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"parameters": [
@@ -1966,7 +1966,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -1989,7 +1989,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -2009,7 +2009,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
]
}
@@ -2026,7 +2026,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 299,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
}
],
"type": {
@@ -2046,7 +2046,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 297,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
]
}
@@ -2071,7 +2071,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 302,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
}
],
"type": {
@@ -2090,7 +2090,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 303,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
}
],
"type": {
@@ -2112,7 +2112,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 301,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
}
]
}
@@ -2147,7 +2147,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"signatures": [
@@ -2190,7 +2190,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"parameters": [
@@ -2237,7 +2237,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"signatures": [
@@ -2300,7 +2300,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"parameters": [
@@ -2354,7 +2354,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 117,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
}
],
"type": {
@@ -2375,7 +2375,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 118,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
}
],
"type": {
@@ -2395,7 +2395,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
}
]
}
@@ -2420,7 +2420,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 121,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
}
],
"type": {
@@ -2439,7 +2439,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 122,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
}
],
"type": {
@@ -2461,7 +2461,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 120,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
}
]
}
@@ -2498,7 +2498,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"signatures": [
@@ -2563,7 +2563,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"parameters": [
@@ -2653,7 +2653,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 66,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
}
],
"type": {
@@ -2677,7 +2677,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 67,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
}
],
"type": {
@@ -2697,7 +2697,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
}
]
}
@@ -2722,7 +2722,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 70,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
}
],
"type": {
@@ -2741,7 +2741,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 71,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
}
],
"type": {
@@ -2763,7 +2763,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 69,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
}
]
}
@@ -2801,7 +2801,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -2837,7 +2837,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -2911,7 +2911,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -2947,7 +2947,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -2980,7 +2980,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"signatures": [
@@ -3043,7 +3043,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"parameters": [
@@ -3102,7 +3102,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 244,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
}
],
"type": {
@@ -3143,7 +3143,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 243,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
}
],
"type": {
@@ -3183,7 +3183,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 242,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
}
],
"type": {
@@ -3203,7 +3203,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 241,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
}
]
}
@@ -3240,7 +3240,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -3263,7 +3263,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -3283,7 +3283,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
]
}
@@ -3300,7 +3300,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 249,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
}
],
"type": {
@@ -3320,7 +3320,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 247,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
}
]
}
@@ -3345,7 +3345,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 252,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
}
],
"type": {
@@ -3364,7 +3364,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
}
],
"type": {
@@ -3386,7 +3386,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 251,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
}
]
}
@@ -3448,7 +3448,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L11"
}
],
"extendedTypes": [
@@ -3486,7 +3486,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L17"
}
],
"signatures": [
@@ -3501,7 +3501,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L17"
}
],
"parameters": [
@@ -3589,7 +3589,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -3610,7 +3610,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -3634,7 +3634,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L11"
}
],
"extendedTypes": [
@@ -3692,7 +3692,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L77"
}
],
"signatures": [
@@ -3707,7 +3707,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L77"
}
],
"parameters": [
@@ -3778,7 +3778,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L75"
}
],
"type": {
@@ -3800,7 +3800,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -3827,7 +3827,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -3856,7 +3856,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 74,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L74"
}
],
"extendedTypes": [
@@ -3907,7 +3907,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L112"
}
],
"signatures": [
@@ -3922,7 +3922,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L112"
}
],
"parameters": [
@@ -3992,7 +3992,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 45,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L45"
}
],
"type": {
@@ -4018,7 +4018,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 46,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L46"
}
],
"type": {
@@ -4044,7 +4044,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"signatures": [
@@ -4061,7 +4061,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L60"
}
],
"type": {
@@ -4084,7 +4084,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 63,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L63"
}
],
"type": {
@@ -4104,7 +4104,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L62"
}
],
"type": {
@@ -4124,7 +4124,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 64,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L64"
}
],
"type": {
@@ -4144,7 +4144,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L65"
}
],
"type": {
@@ -4165,7 +4165,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 61,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L61"
}
]
}
@@ -4203,7 +4203,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L111"
}
],
"extendedTypes": [
@@ -4247,7 +4247,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L93"
}
],
"signatures": [
@@ -4262,7 +4262,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L93"
}
],
"parameters": [
@@ -4311,7 +4311,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -4338,7 +4338,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -4367,7 +4367,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 92,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L92"
}
],
"extendedTypes": [
@@ -4411,7 +4411,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L122"
}
],
"signatures": [
@@ -4426,7 +4426,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L122"
}
],
"parameters": [
@@ -4485,7 +4485,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L75"
}
],
"type": {
@@ -4512,7 +4512,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L14"
}
],
"type": {
@@ -4539,7 +4539,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L15"
}
],
"type": {
@@ -4568,7 +4568,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 121,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L121"
}
],
"extendedTypes": [
@@ -4614,7 +4614,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L42"
}
],
"type": {
@@ -4641,7 +4641,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L40"
}
],
"type": {
@@ -4668,7 +4668,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L36"
}
],
"type": {
@@ -4695,7 +4695,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L38"
}
],
"type": {
@@ -4722,7 +4722,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -4742,7 +4742,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 34,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L34"
}
]
},
@@ -4766,7 +4766,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L16"
}
],
"type": {
@@ -4788,7 +4788,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L17"
}
],
"type": {
@@ -4809,7 +4809,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L15"
}
],
"type": {
@@ -4828,7 +4828,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L11"
}
],
"type": {
@@ -4847,7 +4847,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L13"
}
],
"type": {
@@ -4866,7 +4866,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L14"
}
],
"type": {
@@ -4885,7 +4885,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L19"
}
],
"type": {
@@ -4906,7 +4906,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L12"
}
],
"type": {
@@ -4927,7 +4927,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -4947,7 +4947,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 10,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L10"
}
]
},
@@ -4985,7 +4985,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 468,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L468"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L468"
}
],
"type": {
@@ -5012,7 +5012,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 469,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L469"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L469"
}
],
"type": {
@@ -5042,7 +5042,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 467,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L467"
}
],
"type": {
@@ -5062,7 +5062,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 466,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L466"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L466"
}
]
},
@@ -5086,7 +5086,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L112"
}
],
"type": {
@@ -5106,7 +5106,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 111,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L111"
}
]
},
@@ -5146,7 +5146,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 281,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L281"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L281"
}
],
"type": {
@@ -5175,7 +5175,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 282,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L282"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L282"
}
],
"type": {
@@ -5195,7 +5195,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 280,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L280"
}
]
},
@@ -5233,7 +5233,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 565,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L565"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L565"
}
],
"type": {
@@ -5260,7 +5260,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 566,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L566"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L566"
}
],
"type": {
@@ -5282,7 +5282,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 564,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L564"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L564"
}
]
},
@@ -5314,7 +5314,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L215"
}
],
"type": {
@@ -5368,7 +5368,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 204,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L204"
}
],
"type": {
@@ -5393,7 +5393,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 200,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L200"
}
]
},
@@ -5415,7 +5415,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L49"
}
],
"type": {
@@ -5434,7 +5434,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L57"
}
],
"type": {
@@ -5455,7 +5455,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L53"
}
],
"type": {
@@ -5474,7 +5474,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L51"
}
],
"type": {
@@ -5502,7 +5502,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L55"
}
],
"type": {
@@ -5521,7 +5521,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L56"
}
],
"type": {
@@ -5555,7 +5555,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L48"
}
],
"type": {
@@ -5574,7 +5574,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L50"
}
],
"type": {
@@ -5593,7 +5593,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L52"
}
],
"type": {
@@ -5613,7 +5613,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 47,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L47"
}
]
},
@@ -5635,7 +5635,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L64"
}
],
"type": {
@@ -5656,7 +5656,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L70"
}
],
"type": {
@@ -5677,7 +5677,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L71"
}
],
"type": {
@@ -5696,7 +5696,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L66"
}
],
"type": {
@@ -5717,7 +5717,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -5736,7 +5736,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L61"
}
],
"type": {
@@ -5764,7 +5764,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 68,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L68"
}
],
"type": {
@@ -5785,7 +5785,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L73"
}
],
"type": {
@@ -5806,7 +5806,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L74"
}
],
"type": {
@@ -5840,7 +5840,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L63"
}
],
"type": {
@@ -5861,7 +5861,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L69"
}
],
"type": {
@@ -5880,7 +5880,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L65"
}
],
"type": {
@@ -5899,7 +5899,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L62"
}
],
"type": {
@@ -5921,7 +5921,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 60,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L60"
}
]
},
@@ -5961,7 +5961,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L86"
}
],
"type": {
@@ -6038,7 +6038,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L90"
}
],
"type": {
@@ -6067,7 +6067,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -6096,7 +6096,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 108,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L108"
}
],
"type": {
@@ -6140,7 +6140,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L103"
}
],
"type": {
@@ -6184,7 +6184,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -6204,7 +6204,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 82,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L82"
}
]
},
@@ -6242,7 +6242,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L434"
}
],
"type": {
@@ -6269,7 +6269,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 435,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L435"
}
],
"type": {
@@ -6301,7 +6301,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 436,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L436"
}
],
"type": {
@@ -6330,7 +6330,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 437,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L437"
}
],
"type": {
@@ -6357,7 +6357,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 433,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L433"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L433"
}
],
"type": {
@@ -6377,7 +6377,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 432,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L432"
}
]
},
@@ -6415,7 +6415,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 445,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L445"
}
],
"type": {
@@ -6440,7 +6440,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 444,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L444"
}
]
},
@@ -6464,7 +6464,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L23"
}
],
"type": {
@@ -6485,7 +6485,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L24"
}
],
"type": {
@@ -6506,7 +6506,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L27"
}
],
"type": {
@@ -6527,7 +6527,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L25"
}
],
"type": {
@@ -6565,7 +6565,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L26"
}
],
"type": {
@@ -6594,7 +6594,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L22"
}
]
},
@@ -6634,7 +6634,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 410,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L410"
}
],
"type": {
@@ -6663,7 +6663,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L411"
}
],
"type": {
@@ -6692,7 +6692,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 409,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L409"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L409"
}
],
"type": {
@@ -6719,7 +6719,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 408,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L408"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L408"
}
],
"type": {
@@ -6739,7 +6739,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 407,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L407"
}
]
},
@@ -6777,7 +6777,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 420,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L420"
}
],
"type": {
@@ -6802,7 +6802,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 420,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L420"
}
],
"type": {
@@ -6822,7 +6822,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 420,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L420"
}
]
}
@@ -6850,7 +6850,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L421"
}
],
"type": {
@@ -6870,7 +6870,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 419,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L419"
}
]
},
@@ -6910,7 +6910,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 386,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L386"
}
],
"type": {
@@ -6939,7 +6939,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 387,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L387"
}
],
"type": {
@@ -6968,7 +6968,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 385,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L385"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L385"
}
],
"type": {
@@ -6988,7 +6988,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 384,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L384"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L384"
}
]
},
@@ -7028,7 +7028,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L397"
}
],
"type": {
@@ -7055,7 +7055,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 396,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L396"
}
],
"type": {
@@ -7080,7 +7080,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 396,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L396"
}
],
"type": {
@@ -7100,7 +7100,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 396,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L396"
}
]
}
@@ -7119,7 +7119,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 395,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L395"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L395"
}
]
},
@@ -7157,7 +7157,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 486,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L486"
}
],
"type": {
@@ -7186,7 +7186,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 487,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L487"
}
],
"type": {
@@ -7215,7 +7215,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 488,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L488"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L488"
}
],
"type": {
@@ -7244,7 +7244,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 489,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L489"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L489"
}
],
"type": {
@@ -7273,7 +7273,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 490,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L490"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L490"
}
],
"type": {
@@ -7302,7 +7302,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L491"
}
],
"type": {
@@ -7331,7 +7331,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L492"
}
],
"type": {
@@ -7358,7 +7358,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -7378,7 +7378,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 484,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L484"
}
]
},
@@ -7418,7 +7418,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 502,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L502"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L502"
}
],
"type": {
@@ -7445,7 +7445,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L501"
}
],
"type": {
@@ -7470,7 +7470,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 500,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L500"
}
]
},
@@ -7492,7 +7492,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 220,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L220"
}
],
"type": {
@@ -7512,7 +7512,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 219,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L219"
}
]
},
@@ -7552,7 +7552,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 303,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L303"
}
],
"type": {
@@ -7575,7 +7575,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 302,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L302"
}
]
},
@@ -7613,7 +7613,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L456"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L456"
}
],
"type": {
@@ -7640,7 +7640,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L455"
}
],
"type": {
@@ -7667,7 +7667,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L457"
}
],
"type": {
@@ -7692,7 +7692,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 454,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L454"
}
]
},
@@ -7732,7 +7732,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 526,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L526"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L526"
}
],
"type": {
@@ -7761,7 +7761,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 523,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L523"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L523"
}
],
"type": {
@@ -7788,7 +7788,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 524,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L524"
}
],
"type": {
@@ -7819,7 +7819,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 527,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L527"
}
],
"type": {
@@ -7848,7 +7848,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 528,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L528"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L528"
}
],
"type": {
@@ -7877,7 +7877,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 525,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L525"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L525"
}
],
"type": {
@@ -7904,7 +7904,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L522"
}
],
"type": {
@@ -7924,7 +7924,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 521,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L521"
}
]
},
@@ -7964,7 +7964,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L538"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L538"
}
],
"type": {
@@ -7993,7 +7993,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L537"
}
],
"type": {
@@ -8018,7 +8018,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 536,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L536"
}
]
},
@@ -8061,7 +8061,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L120"
}
],
"type": {
@@ -8090,7 +8090,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L125"
}
],
"type": {
@@ -8119,7 +8119,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L135"
}
],
"type": {
@@ -8148,7 +8148,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L130"
}
],
"type": {
@@ -8170,7 +8170,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 115,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L115"
}
]
},
@@ -8192,7 +8192,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L183"
}
],
"type": {
@@ -8211,7 +8211,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L179"
}
],
"type": {
@@ -8230,7 +8230,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L180"
}
],
"type": {
@@ -8258,7 +8258,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 188,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L188"
}
],
"type": {
@@ -8277,7 +8277,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L184"
}
],
"type": {
@@ -8311,7 +8311,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -8330,7 +8330,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L182"
}
],
"type": {
@@ -8350,7 +8350,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 178,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L178"
}
]
},
@@ -8382,7 +8382,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 158,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L158"
}
],
"type": {
@@ -8422,7 +8422,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L148"
}
],
"type": {
@@ -8451,7 +8451,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 153,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L153"
}
],
"type": {
@@ -8491,7 +8491,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L175"
}
],
"type": {
@@ -8549,7 +8549,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L169"
}
],
"type": {
@@ -8569,7 +8569,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 143,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L143"
}
]
},
@@ -8591,7 +8591,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L195"
}
],
"type": {
@@ -8615,7 +8615,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 194,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L194"
}
],
"type": {
@@ -8636,7 +8636,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L197"
}
],
"type": {
@@ -8655,7 +8655,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 196,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L196"
}
],
"type": {
@@ -8680,7 +8680,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 193,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L193"
}
]
},
@@ -8704,7 +8704,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -8725,7 +8725,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L79"
}
],
"type": {
@@ -8745,7 +8745,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 77,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L77"
}
]
},
@@ -8767,7 +8767,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L139"
}
],
"type": {
@@ -8801,7 +8801,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L140"
}
],
"type": {
@@ -8830,7 +8830,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 138,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L138"
}
]
},
@@ -8854,7 +8854,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L8"
}
],
"type": {
@@ -8874,7 +8874,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 7,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/StorageClient.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/StorageClient.ts#L7"
}
]
},
@@ -8912,7 +8912,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 555,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L555"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L555"
}
],
"type": {
@@ -8943,7 +8943,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 556,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L556"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L556"
}
],
"type": {
@@ -8963,7 +8963,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 554,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L554"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L554"
}
],
"typeParameters": [
@@ -9004,7 +9004,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L251"
}
],
"type": {
@@ -9033,7 +9033,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L231"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L231"
}
],
"type": {
@@ -9062,7 +9062,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 244,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L244"
}
],
"type": {
@@ -9091,7 +9091,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L238"
}
],
"type": {
@@ -9133,7 +9133,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 227,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L227"
}
],
"type": {
@@ -9153,7 +9153,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 223,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L223"
}
]
},
@@ -9193,7 +9193,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L293"
}
],
"type": {
@@ -9222,7 +9222,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 294,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L294"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L294"
}
],
"type": {
@@ -9251,7 +9251,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L292"
}
],
"type": {
@@ -9271,7 +9271,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 291,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L291"
}
]
},
@@ -9309,7 +9309,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 343,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L343"
}
],
"type": {
@@ -9332,7 +9332,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 342,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L342"
}
]
},
@@ -9372,7 +9372,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 546,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L546"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L546"
}
],
"type": {
@@ -9397,7 +9397,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 545,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L545"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L545"
}
]
},
@@ -9437,7 +9437,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 334,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L334"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L334"
}
],
"type": {
@@ -9464,7 +9464,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L330"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L330"
}
],
"type": {
@@ -9491,7 +9491,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L331"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L331"
}
],
"type": {
@@ -9518,7 +9518,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 332,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L332"
}
],
"type": {
@@ -9547,7 +9547,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L328"
}
],
"type": {
@@ -9576,7 +9576,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L333"
}
],
"type": {
@@ -9605,7 +9605,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L329"
}
],
"type": {
@@ -9625,7 +9625,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 327,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L327"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L327"
}
]
},
@@ -9665,7 +9665,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 373,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L373"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L373"
}
],
"type": {
@@ -9696,7 +9696,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 375,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L375"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L375"
}
],
"type": {
@@ -9723,7 +9723,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 372,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L372"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L372"
}
],
"type": {
@@ -9752,7 +9752,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 374,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L374"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L374"
}
],
"type": {
@@ -9774,7 +9774,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 371,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L371"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L371"
}
]
},
@@ -9812,7 +9812,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L360"
}
],
"type": {
@@ -9841,7 +9841,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L359"
}
],
"type": {
@@ -9870,7 +9870,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L361"
}
],
"type": {
@@ -9892,7 +9892,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 358,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L358"
}
]
},
@@ -9915,7 +9915,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 573,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L573"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L573"
}
],
"typeParameters": [
@@ -9973,7 +9973,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 8,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L8"
}
],
"type": {
@@ -10001,7 +10001,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 258,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L258"
}
],
"typeParameters": [
@@ -10104,7 +10104,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 315,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L315"
}
],
"type": {
@@ -10136,7 +10136,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 262,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L262"
}
],
"typeParameters": [
@@ -10171,7 +10171,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 264,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L264"
}
],
"type": {
@@ -10193,7 +10193,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 265,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L265"
}
],
"type": {
@@ -10213,7 +10213,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 263,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L263"
}
]
}
@@ -10238,7 +10238,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 268,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L268"
}
],
"type": {
@@ -10257,7 +10257,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 269,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L269"
}
],
"type": {
@@ -10279,7 +10279,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 267,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L267"
}
]
}
@@ -10306,7 +10306,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 5,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L5"
}
],
"type": {
@@ -10334,7 +10334,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 191,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L191"
}
],
"type": {
@@ -10391,7 +10391,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 310,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L310"
}
],
"type": {
@@ -10418,7 +10418,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 509,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L509"
}
],
"type": {
@@ -10460,7 +10460,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 350,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/types.ts#L350"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/types.ts#L350"
}
],
"type": {
@@ -10494,7 +10494,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L36"
}
],
"signatures": [
@@ -10528,7 +10528,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L36"
}
],
"parameters": [
@@ -10577,7 +10577,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 103,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L103"
}
],
"signatures": [
@@ -10611,7 +10611,7 @@
"fileName": "packages/core/storage-js/src/lib/common/errors.ts",
"line": 103,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/errors.ts#L103"
}
],
"parameters": [
@@ -10660,7 +10660,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 15,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L15"
}
],
"target": 891
@@ -10676,7 +10676,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 3,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L3"
}
],
"target": 48
@@ -10692,7 +10692,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L7"
}
],
"target": 544
@@ -10708,7 +10708,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 11,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L11"
}
],
"target": 531
@@ -10724,7 +10724,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L8"
}
],
"target": 599
@@ -10740,7 +10740,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L9"
}
],
"target": 667
@@ -10781,7 +10781,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/index.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/index.ts#L1"
}
]
},
@@ -10810,7 +10810,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"signatures": [
@@ -10825,7 +10825,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"parameters": [
@@ -10848,7 +10848,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -10863,7 +10863,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"type": {
@@ -10926,7 +10926,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
}
],
"type": {
@@ -10951,7 +10951,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -10966,7 +10966,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"type": {
@@ -10990,7 +10990,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"signatures": [
@@ -11024,7 +11024,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"typeParameters": [
@@ -11077,7 +11077,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"signatures": [
@@ -11092,7 +11092,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"parameters": [
@@ -11210,7 +11210,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -11244,7 +11244,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"parameters": [
@@ -11284,7 +11284,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -11299,7 +11299,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"type": {
@@ -11366,7 +11366,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"signatures": [
@@ -11400,7 +11400,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"typeParameters": [
@@ -11477,7 +11477,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"signatures": [
@@ -11492,7 +11492,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"parameters": [
@@ -11594,7 +11594,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"signatures": [
@@ -11609,7 +11609,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"parameters": [
@@ -11726,7 +11726,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 5,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
}
],
"implementedTypes": [
@@ -11772,7 +11772,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
}
]
},
@@ -11809,7 +11809,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"signatures": [
@@ -11853,7 +11853,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"parameters": [
@@ -11903,7 +11903,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"indexSignatures": [
@@ -11918,7 +11918,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 39,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L39"
}
],
"parameters": [
@@ -12205,7 +12205,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 79,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
}
],
"signatures": [
@@ -12267,7 +12267,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 79,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L79"
}
],
"parameters": [
@@ -12321,7 +12321,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 81,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81"
}
],
"type": {
@@ -12342,7 +12342,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 82,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82"
}
],
"type": {
@@ -12362,7 +12362,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 80,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
}
]
}
@@ -12387,7 +12387,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 85,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85"
}
],
"type": {
@@ -12406,7 +12406,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 86,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86"
}
],
"type": {
@@ -12428,7 +12428,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 84,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L84"
}
]
}
@@ -12453,7 +12453,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
}
],
"signatures": [
@@ -12515,7 +12515,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 203,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L203"
}
],
"parameters": [
@@ -12569,7 +12569,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 205,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
}
],
"type": {
@@ -12592,7 +12592,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 205,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
}
],
"type": {
@@ -12612,7 +12612,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 205,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L205"
}
]
}
@@ -12629,7 +12629,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L206"
}
],
"type": {
@@ -12649,7 +12649,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L204"
}
]
}
@@ -12674,7 +12674,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 209,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L209"
}
],
"type": {
@@ -12693,7 +12693,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 210,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L210"
}
],
"type": {
@@ -12715,7 +12715,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 208,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L208"
}
]
}
@@ -12740,7 +12740,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 346,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
}
],
"signatures": [
@@ -12914,7 +12914,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 346,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L346"
}
],
"parameters": [
@@ -12958,7 +12958,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
}
],
"signatures": [
@@ -13020,7 +13020,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 140,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
}
],
"parameters": [
@@ -13070,7 +13070,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 141,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L141"
}
],
"type": {
@@ -13099,7 +13099,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 142,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L142"
}
],
"type": {
@@ -13128,7 +13128,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 145,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L145"
}
],
"type": {
@@ -13157,7 +13157,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 143,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L143"
}
],
"type": {
@@ -13199,7 +13199,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 144,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L144"
}
],
"type": {
@@ -13228,7 +13228,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 140,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L140"
}
]
}
@@ -13265,7 +13265,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 148,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L148"
}
],
"type": {
@@ -13289,7 +13289,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 149,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
],
"type": {
@@ -13309,7 +13309,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L147"
}
]
}
@@ -13334,7 +13334,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 152,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152"
}
],
"type": {
@@ -13353,7 +13353,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 153,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153"
}
],
"type": {
@@ -13375,7 +13375,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 151,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151"
}
]
}
@@ -13403,7 +13403,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -13439,7 +13439,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -13513,7 +13513,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -13549,7 +13549,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -13595,7 +13595,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 21,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L21"
}
],
"extendedTypes": [
@@ -13629,7 +13629,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L13"
}
],
"type": {
@@ -13699,7 +13699,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1"
}
]
},
@@ -13728,7 +13728,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
}
],
"signatures": [
@@ -13743,7 +13743,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L9"
}
],
"parameters": [
@@ -13777,7 +13777,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
}
],
"indexSignatures": [
@@ -13792,7 +13792,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 11,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L11"
}
],
"parameters": [
@@ -14086,7 +14086,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"signatures": [
@@ -14147,7 +14147,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 167,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L167"
}
],
"parameters": [
@@ -14206,7 +14206,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 172,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L172"
}
],
"type": {
@@ -14247,7 +14247,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 171,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L171"
}
],
"type": {
@@ -14287,7 +14287,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L170"
}
],
"type": {
@@ -14328,7 +14328,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 173,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L173"
}
],
"type": {
@@ -14350,7 +14350,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 169,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L169"
}
]
}
@@ -14388,7 +14388,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
}
],
"type": {
@@ -14424,7 +14424,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 180,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
}
],
"type": {
@@ -14444,7 +14444,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 178,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
}
]
}
@@ -14469,7 +14469,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 183,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
}
],
"type": {
@@ -14488,7 +14488,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 184,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
}
],
"type": {
@@ -14510,7 +14510,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 182,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
}
]
}
@@ -14535,7 +14535,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"signatures": [
@@ -14604,7 +14604,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 336,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L336"
}
],
"parameters": [
@@ -14658,7 +14658,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -14681,7 +14681,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
],
"type": {
@@ -14701,7 +14701,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 338,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L338"
}
]
}
@@ -14718,7 +14718,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 339,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L339"
}
],
"type": {
@@ -14738,7 +14738,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 337,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L337"
}
]
}
@@ -14763,7 +14763,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L342"
}
],
"type": {
@@ -14782,7 +14782,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 343,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L343"
}
],
"type": {
@@ -14804,7 +14804,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 341,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L341"
}
]
}
@@ -14829,7 +14829,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"signatures": [
@@ -14890,7 +14890,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"parameters": [
@@ -14944,7 +14944,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -14967,7 +14967,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
],
"type": {
@@ -14987,7 +14987,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 298,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L298"
}
]
}
@@ -15004,7 +15004,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 299,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L299"
}
],
"type": {
@@ -15024,7 +15024,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 297,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
]
}
@@ -15049,7 +15049,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 302,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L302"
}
],
"type": {
@@ -15068,7 +15068,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 303,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L303"
}
],
"type": {
@@ -15090,7 +15090,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 301,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L301"
}
]
}
@@ -15115,7 +15115,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"signatures": [
@@ -15176,7 +15176,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 115,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L115"
}
],
"parameters": [
@@ -15230,7 +15230,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 117,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
}
],
"type": {
@@ -15251,7 +15251,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 118,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L118"
}
],
"type": {
@@ -15271,7 +15271,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 116,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L116"
}
]
}
@@ -15296,7 +15296,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 121,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
}
],
"type": {
@@ -15315,7 +15315,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 122,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
}
],
"type": {
@@ -15337,7 +15337,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 120,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
}
]
}
@@ -15362,7 +15362,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"signatures": [
@@ -15425,7 +15425,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 64,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L64"
}
],
"parameters": [
@@ -15515,7 +15515,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 66,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L66"
}
],
"type": {
@@ -15539,7 +15539,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 67,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L67"
}
],
"type": {
@@ -15559,7 +15559,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 65,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L65"
}
]
}
@@ -15584,7 +15584,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 70,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L70"
}
],
"type": {
@@ -15603,7 +15603,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 71,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L71"
}
],
"type": {
@@ -15625,7 +15625,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 69,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L69"
}
]
}
@@ -15653,7 +15653,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -15689,7 +15689,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -15763,7 +15763,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -15799,7 +15799,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -15830,7 +15830,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"signatures": [
@@ -15891,7 +15891,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 239,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L239"
}
],
"parameters": [
@@ -15950,7 +15950,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 244,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L244"
}
],
"type": {
@@ -15991,7 +15991,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 243,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L243"
}
],
"type": {
@@ -16031,7 +16031,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 242,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L242"
}
],
"type": {
@@ -16051,7 +16051,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 241,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L241"
}
]
}
@@ -16088,7 +16088,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -16111,7 +16111,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
],
"type": {
@@ -16131,7 +16131,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 248,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L248"
}
]
}
@@ -16148,7 +16148,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 249,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L249"
}
],
"type": {
@@ -16168,7 +16168,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 247,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L247"
}
]
}
@@ -16193,7 +16193,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 252,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L252"
}
],
"type": {
@@ -16212,7 +16212,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L253"
}
],
"type": {
@@ -16234,7 +16234,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 251,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L251"
}
]
}
@@ -16274,7 +16274,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
}
],
"extendedTypes": [
@@ -16316,7 +16316,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
}
]
},
@@ -16345,7 +16345,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
}
],
"signatures": [
@@ -16360,7 +16360,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L49"
}
],
"parameters": [
@@ -16394,7 +16394,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
}
],
"indexSignatures": [
@@ -16409,7 +16409,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 51,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L51"
}
],
"parameters": [
@@ -16701,7 +16701,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 500,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
}
],
"signatures": [
@@ -16762,7 +16762,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 500,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
}
],
"parameters": [
@@ -16874,7 +16874,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 506,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
}
],
"type": {
@@ -16897,7 +16897,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 506,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
}
],
"type": {
@@ -16917,7 +16917,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 506,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L506"
}
]
}
@@ -16934,7 +16934,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 507,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L507"
}
],
"type": {
@@ -16954,7 +16954,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 505,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L505"
}
]
}
@@ -16979,7 +16979,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 510,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L510"
}
],
"type": {
@@ -16998,7 +16998,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 511,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L511"
}
],
"type": {
@@ -17020,7 +17020,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 509,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L509"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L509"
}
]
}
@@ -17045,7 +17045,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"signatures": [
@@ -17106,7 +17106,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"parameters": [
@@ -17173,7 +17173,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 307,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
}
],
"type": {
@@ -17193,7 +17193,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 307,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L307"
}
]
}
@@ -17230,7 +17230,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -17253,7 +17253,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -17272,7 +17272,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -17291,7 +17291,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
],
"type": {
@@ -17311,7 +17311,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 310,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L310"
}
]
}
@@ -17328,7 +17328,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 311,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L311"
}
],
"type": {
@@ -17348,7 +17348,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 309,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L309"
}
]
}
@@ -17373,7 +17373,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 314,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L314"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L314"
}
],
"type": {
@@ -17392,7 +17392,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 315,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
}
],
"type": {
@@ -17414,7 +17414,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 313,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L313"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L313"
}
]
}
@@ -17439,7 +17439,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 581,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
}
],
"signatures": [
@@ -17520,7 +17520,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 581,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
}
],
"parameters": [
@@ -17616,7 +17616,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 584,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
}
],
"type": {
@@ -17654,7 +17654,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 584,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
}
],
"type": {
@@ -17676,7 +17676,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 584,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
}
]
}
@@ -17713,7 +17713,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 587,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
}
],
"type": {
@@ -17736,7 +17736,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 587,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
}
],
"type": {
@@ -17756,7 +17756,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 587,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
}
]
}
@@ -17773,7 +17773,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 588,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L588"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L588"
}
],
"type": {
@@ -17793,7 +17793,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 586,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L586"
}
]
}
@@ -17818,7 +17818,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 591,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L591"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L591"
}
],
"type": {
@@ -17837,7 +17837,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 592,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L592"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L592"
}
],
"type": {
@@ -17859,7 +17859,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 590,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L590"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L590"
}
]
}
@@ -17884,7 +17884,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 650,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
}
],
"signatures": [
@@ -17945,7 +17945,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 650,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L650"
}
],
"parameters": [
@@ -18042,7 +18042,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 653,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
}
],
"type": {
@@ -18071,7 +18071,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 653,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
}
]
}
@@ -18108,7 +18108,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -18133,7 +18133,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -18161,7 +18161,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -18189,7 +18189,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -18209,7 +18209,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 656,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
]
}
@@ -18227,7 +18227,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 657,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L657"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L657"
}
],
"type": {
@@ -18247,7 +18247,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 655,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L655"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L655"
}
]
}
@@ -18272,7 +18272,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 660,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L660"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L660"
}
],
"type": {
@@ -18291,7 +18291,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 661,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L661"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L661"
}
],
"type": {
@@ -18313,7 +18313,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 659,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L659"
}
]
}
@@ -18338,7 +18338,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
],
"signatures": [
@@ -18437,7 +18437,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
],
"typeParameters": [
@@ -18469,7 +18469,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
],
"type": {
@@ -18491,7 +18491,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 742,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L742"
}
]
}
@@ -18587,7 +18587,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 816,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
}
],
"signatures": [
@@ -18640,7 +18640,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 816,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L816"
}
],
"parameters": [
@@ -18702,7 +18702,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 818,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L818"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L818"
}
],
"type": {
@@ -18721,7 +18721,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 819,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L819"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L819"
}
],
"type": {
@@ -18741,7 +18741,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 817,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L817"
}
]
}
@@ -18766,7 +18766,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 822,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L822"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L822"
}
],
"type": {
@@ -18785,7 +18785,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 823,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L823"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L823"
}
],
"type": {
@@ -18807,7 +18807,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 821,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L821"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L821"
}
]
}
@@ -18832,7 +18832,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 900,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
}
],
"signatures": [
@@ -18913,7 +18913,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 900,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L900"
}
],
"parameters": [
@@ -18982,7 +18982,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 902,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
}
],
"type": {
@@ -19020,7 +19020,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 902,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
}
],
"type": {
@@ -19042,7 +19042,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 902,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L902"
}
]
}
@@ -19069,7 +19069,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
],
"type": {
@@ -19092,7 +19092,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
],
"type": {
@@ -19112,7 +19112,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
]
}
@@ -19130,7 +19130,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 903,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L903"
}
]
}
@@ -19149,7 +19149,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 780,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
}
],
"signatures": [
@@ -19202,7 +19202,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 780,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L780"
}
],
"parameters": [
@@ -19264,7 +19264,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 782,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L782"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L782"
}
],
"type": {
@@ -19293,7 +19293,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 783,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L783"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L783"
}
],
"type": {
@@ -19313,7 +19313,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 781,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L781"
}
]
}
@@ -19338,7 +19338,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 786,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L786"
}
],
"type": {
@@ -19357,7 +19357,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 787,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L787"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L787"
}
],
"type": {
@@ -19379,7 +19379,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 785,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L785"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L785"
}
]
}
@@ -19404,7 +19404,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1098,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
}
],
"signatures": [
@@ -19475,7 +19475,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1098,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1098"
}
],
"parameters": [
@@ -19577,7 +19577,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1104,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1104"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1104"
}
],
"type": {
@@ -19601,7 +19601,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1105,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1105"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1105"
}
],
"type": {
@@ -19621,7 +19621,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1103,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1103"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1103"
}
]
}
@@ -19646,7 +19646,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1108,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1108"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1108"
}
],
"type": {
@@ -19665,7 +19665,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1109,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1109"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1109"
}
],
"type": {
@@ -19687,7 +19687,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1107,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1107"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1107"
}
]
}
@@ -19712,7 +19712,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1131,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
}
],
"signatures": [
@@ -19747,7 +19747,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1131,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1131"
}
],
"parameters": [
@@ -19820,7 +19820,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1136,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1136"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1136"
}
],
"type": {
@@ -19841,7 +19841,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1137,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1137"
}
],
"type": {
@@ -19861,7 +19861,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1135,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1135"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1135"
}
]
}
@@ -19886,7 +19886,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1140,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1140"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1140"
}
],
"type": {
@@ -19905,7 +19905,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1141,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1141"
}
],
"type": {
@@ -19927,7 +19927,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1139,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1139"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1139"
}
]
}
@@ -19952,7 +19952,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 444,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
}
],
"signatures": [
@@ -20013,7 +20013,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 444,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
}
],
"parameters": [
@@ -20125,7 +20125,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 450,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
}
],
"type": {
@@ -20148,7 +20148,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 450,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
}
],
"type": {
@@ -20168,7 +20168,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 450,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
}
]
}
@@ -20185,7 +20185,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 451,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L451"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L451"
}
],
"type": {
@@ -20205,7 +20205,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 449,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L449"
}
]
}
@@ -20230,7 +20230,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 454,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L454"
}
],
"type": {
@@ -20249,7 +20249,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 455,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L455"
}
],
"type": {
@@ -20271,7 +20271,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 453,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L453"
}
]
}
@@ -20296,7 +20296,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 956,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
}
],
"signatures": [
@@ -20357,7 +20357,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 956,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L956"
}
],
"parameters": [
@@ -20422,7 +20422,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 958,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L958"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L958"
}
],
"type": {
@@ -20446,7 +20446,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 959,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L959"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L959"
}
],
"type": {
@@ -20466,7 +20466,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 957,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L957"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L957"
}
]
}
@@ -20491,7 +20491,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 962,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L962"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L962"
}
],
"type": {
@@ -20510,7 +20510,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 963,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L963"
}
],
"type": {
@@ -20532,7 +20532,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 961,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L961"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L961"
}
]
}
@@ -20560,7 +20560,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -20596,7 +20596,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -20670,7 +20670,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -20706,7 +20706,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -20737,7 +20737,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
}
],
"signatures": [
@@ -20752,7 +20752,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1160"
}
],
"parameters": [
@@ -20786,7 +20786,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 390,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
}
],
"signatures": [
@@ -20857,7 +20857,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 390,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
}
],
"parameters": [
@@ -21093,7 +21093,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -21116,7 +21116,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -21135,7 +21135,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -21154,7 +21154,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
],
"type": {
@@ -21174,7 +21174,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 406,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L406"
}
]
}
@@ -21191,7 +21191,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 407,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L407"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L407"
}
],
"type": {
@@ -21211,7 +21211,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 405,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L405"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L405"
}
]
}
@@ -21236,7 +21236,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 410,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L410"
}
],
"type": {
@@ -21255,7 +21255,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L411"
}
],
"type": {
@@ -21277,7 +21277,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 409,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L409"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L409"
}
]
}
@@ -21302,7 +21302,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 188,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
}
],
"signatures": [
@@ -21373,7 +21373,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 188,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L188"
}
],
"parameters": [
@@ -21482,7 +21482,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -21505,7 +21505,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -21524,7 +21524,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -21543,7 +21543,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
],
"type": {
@@ -21563,7 +21563,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 194,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L194"
}
]
}
@@ -21580,7 +21580,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 195,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L195"
}
],
"type": {
@@ -21600,7 +21600,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 193,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L193"
}
]
}
@@ -21625,7 +21625,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
}
],
"type": {
@@ -21644,7 +21644,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L199"
}
],
"type": {
@@ -21666,7 +21666,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L197"
}
]
}
@@ -21691,7 +21691,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
}
],
"signatures": [
@@ -21760,7 +21760,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L236"
}
],
"parameters": [
@@ -21916,7 +21916,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -21935,7 +21935,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -21957,7 +21957,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
]
}
@@ -21982,7 +21982,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -22005,7 +22005,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 271,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
}
],
"type": {
@@ -22025,7 +22025,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
}
],
"type": {
@@ -22046,7 +22046,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 271,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L271"
}
]
}
@@ -22063,7 +22063,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
],
"type": {
@@ -22083,7 +22083,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 89,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L89"
}
]
}
@@ -22128,7 +22128,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 46,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L46"
}
],
"extendedTypes": [
@@ -22163,7 +22163,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
}
]
},
@@ -22205,7 +22205,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
}
],
"signatures": [
@@ -22249,7 +22249,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L98"
}
],
"parameters": [
@@ -22347,7 +22347,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
}
],
"signatures": [
@@ -22400,7 +22400,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L145"
}
],
"parameters": [
@@ -22471,7 +22471,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
}
],
"signatures": [
@@ -22524,7 +22524,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L226"
}
],
"parameters": [
@@ -22595,7 +22595,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
}
],
"signatures": [
@@ -22648,7 +22648,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L120"
}
],
"parameters": [
@@ -22692,7 +22692,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
],
"signatures": [
@@ -22745,7 +22745,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
],
"parameters": [
@@ -22800,7 +22800,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
],
"type": {
@@ -22822,7 +22822,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 171,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L171"
}
]
}
@@ -22859,7 +22859,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
}
],
"signatures": [
@@ -22912,7 +22912,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L199"
}
],
"parameters": [
@@ -22991,7 +22991,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -23028,7 +23028,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -23102,7 +23102,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -23139,7 +23139,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -23185,7 +23185,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 80,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L80"
}
],
"extendedTypes": [
@@ -23224,7 +23224,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
}
],
"signatures": [
@@ -23268,7 +23268,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L256"
}
],
"parameters": [
@@ -23302,7 +23302,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 258,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
}
],
"indexSignatures": [
@@ -23317,7 +23317,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 258,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L258"
}
],
"parameters": [
@@ -23605,7 +23605,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 293,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
}
],
"signatures": [
@@ -23658,7 +23658,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 293,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L293"
}
],
"parameters": [
@@ -23746,7 +23746,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 369,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
}
],
"signatures": [
@@ -23799,7 +23799,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 369,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L369"
}
],
"parameters": [
@@ -23870,7 +23870,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 346,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
}
],
"signatures": [
@@ -23923,7 +23923,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 346,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L346"
}
],
"parameters": [
@@ -23978,7 +23978,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 58,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
}
],
"type": {
@@ -24000,7 +24000,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 58,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L58"
}
]
}
@@ -24037,7 +24037,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 404,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
}
],
"signatures": [
@@ -24090,7 +24090,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 404,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L404"
}
],
"parameters": [
@@ -24134,7 +24134,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 319,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
}
],
"signatures": [
@@ -24187,7 +24187,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 319,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L319"
}
],
"parameters": [
@@ -24281,7 +24281,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -24318,7 +24318,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -24392,7 +24392,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -24429,7 +24429,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -24475,7 +24475,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 240,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L240"
}
],
"extendedTypes": [
@@ -24514,7 +24514,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 442,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
}
],
"signatures": [
@@ -24558,7 +24558,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 442,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L442"
}
],
"parameters": [
@@ -24592,7 +24592,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 444,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
}
],
"indexSignatures": [
@@ -24607,7 +24607,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 444,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L444"
}
],
"parameters": [
@@ -24906,7 +24906,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 607,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
}
],
"signatures": [
@@ -24959,7 +24959,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 607,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L607"
}
],
"parameters": [
@@ -25056,7 +25056,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 511,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
}
],
"signatures": [
@@ -25109,7 +25109,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 511,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L511"
}
],
"parameters": [
@@ -25208,7 +25208,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 541,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
}
],
"signatures": [
@@ -25261,7 +25261,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 541,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L541"
}
],
"parameters": [
@@ -25361,7 +25361,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 481,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
}
],
"signatures": [
@@ -25414,7 +25414,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 481,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L481"
}
],
"parameters": [
@@ -25511,7 +25511,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 576,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
}
],
"signatures": [
@@ -25564,7 +25564,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 576,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L576"
}
],
"parameters": [
@@ -25666,7 +25666,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"signatures": [
@@ -25703,7 +25703,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 57,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L57"
}
],
"parameters": [
@@ -25777,7 +25777,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"signatures": [
@@ -25814,7 +25814,7 @@
"fileName": "packages/core/storage-js/src/lib/common/BaseApiClient.ts",
"line": 44,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/lib/common/BaseApiClient.ts#L44"
}
],
"type": {
@@ -25860,7 +25860,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 424,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L424"
}
],
"extendedTypes": [
@@ -25910,7 +25910,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L35"
}
],
"type": {
@@ -26148,7 +26148,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
}
],
"type": {
@@ -26164,7 +26164,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
}
],
"indexSignatures": [
@@ -26179,7 +26179,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 30,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L30"
}
],
"parameters": [
@@ -26216,7 +26216,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 26,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L26"
}
]
}
@@ -26236,7 +26236,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageVectorsClient.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StorageVectorsClient.ts#L1"
}
]
},
@@ -26265,7 +26265,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"signatures": [
@@ -26280,7 +26280,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"parameters": [
@@ -26303,7 +26303,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"signatures": [
@@ -26318,7 +26318,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"type": {
@@ -26379,7 +26379,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -26413,7 +26413,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"typeParameters": [
@@ -26496,7 +26496,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"signatures": [
@@ -26511,7 +26511,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"parameters": [
@@ -26619,7 +26619,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -26634,7 +26634,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"parameters": [
@@ -26747,7 +26747,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 4,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
}
],
"implementedTypes": [
@@ -26793,7 +26793,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
}
]
},
@@ -26808,7 +26808,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorBucketApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorBucketApi.ts#L1"
}
]
},
@@ -26823,7 +26823,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorDataApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorDataApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorDataApi.ts#L1"
}
]
},
@@ -26865,7 +26865,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L25"
}
],
"type": {
@@ -26888,7 +26888,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L26"
}
],
"type": {
@@ -26911,7 +26911,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L27"
}
],
"type": {
@@ -26936,7 +26936,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L24"
}
],
"type": {
@@ -26961,7 +26961,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L28"
}
],
"type": {
@@ -26986,7 +26986,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L23"
}
],
"type": {
@@ -27006,7 +27006,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/storage-js/src/packages/VectorIndexApi.ts#L22"
}
]
}
@@ -27022,7 +27022,7 @@
"fileName": "packages/core/storage-js/src/packages/VectorIndexApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/storage-js/src/packages/VectorIndexApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/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 012c4b3952deb..34a6c14381eb2 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": 47,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/cors.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/cors.ts#L47"
}
],
"type": {
@@ -106,7 +106,7 @@
"fileName": "packages/core/supabase-js/src/cors.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/cors.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/cors.ts#L71"
}
],
"type": {
@@ -133,7 +133,7 @@
"fileName": "packages/core/supabase-js/src/cors.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/cors.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/cors.ts#L1"
}
]
},
@@ -439,14 +439,14 @@
]
},
{
- "id": 2227,
+ "id": 2228,
"name": "REALTIME_LISTEN_TYPES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2228,
+ "id": 2229,
"name": "BROADCAST",
"variant": "declaration",
"kind": 16,
@@ -464,7 +464,7 @@
}
},
{
- "id": 2230,
+ "id": 2231,
"name": "POSTGRES_CHANGES",
"variant": "declaration",
"kind": 16,
@@ -482,7 +482,7 @@
}
},
{
- "id": 2229,
+ "id": 2230,
"name": "PRESENCE",
"variant": "declaration",
"kind": 16,
@@ -500,7 +500,7 @@
}
},
{
- "id": 2231,
+ "id": 2232,
"name": "SYSTEM",
"variant": "declaration",
"kind": 16,
@@ -521,7 +521,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2228, 2230, 2229, 2231]
+ "children": [2229, 2231, 2230, 2232]
}
],
"sources": [
@@ -533,14 +533,14 @@
]
},
{
- "id": 2232,
+ "id": 2233,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2233,
+ "id": 2234,
"name": "ALL",
"variant": "declaration",
"kind": 16,
@@ -558,7 +558,7 @@
}
},
{
- "id": 2236,
+ "id": 2237,
"name": "DELETE",
"variant": "declaration",
"kind": 16,
@@ -576,7 +576,7 @@
}
},
{
- "id": 2234,
+ "id": 2235,
"name": "INSERT",
"variant": "declaration",
"kind": 16,
@@ -594,7 +594,7 @@
}
},
{
- "id": 2235,
+ "id": 2236,
"name": "UPDATE",
"variant": "declaration",
"kind": 16,
@@ -615,7 +615,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2233, 2236, 2234, 2235]
+ "children": [2234, 2237, 2235, 2236]
}
],
"sources": [
@@ -627,14 +627,14 @@
]
},
{
- "id": 2237,
+ "id": 2238,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2239,
+ "id": 2240,
"name": "JOIN",
"variant": "declaration",
"kind": 16,
@@ -652,7 +652,7 @@
}
},
{
- "id": 2240,
+ "id": 2241,
"name": "LEAVE",
"variant": "declaration",
"kind": 16,
@@ -670,7 +670,7 @@
}
},
{
- "id": 2238,
+ "id": 2239,
"name": "SYNC",
"variant": "declaration",
"kind": 16,
@@ -691,7 +691,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2239, 2240, 2238]
+ "children": [2240, 2241, 2239]
}
],
"sources": [
@@ -703,14 +703,14 @@
]
},
{
- "id": 2241,
+ "id": 2242,
"name": "REALTIME_SUBSCRIBE_STATES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2245,
+ "id": 2246,
"name": "CHANNEL_ERROR",
"variant": "declaration",
"kind": 16,
@@ -728,7 +728,7 @@
}
},
{
- "id": 2244,
+ "id": 2245,
"name": "CLOSED",
"variant": "declaration",
"kind": 16,
@@ -746,7 +746,7 @@
}
},
{
- "id": 2242,
+ "id": 2243,
"name": "SUBSCRIBED",
"variant": "declaration",
"kind": 16,
@@ -764,7 +764,7 @@
}
},
{
- "id": 2243,
+ "id": 2244,
"name": "TIMED_OUT",
"variant": "declaration",
"kind": 16,
@@ -785,7 +785,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2245, 2244, 2242, 2243]
+ "children": [2246, 2245, 2243, 2244]
}
],
"sources": [
@@ -797,7 +797,7 @@
]
},
{
- "id": 1517,
+ "id": 1518,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -823,7 +823,7 @@
},
"children": [
{
- "id": 1518,
+ "id": 1519,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -837,7 +837,7 @@
],
"signatures": [
{
- "id": 1519,
+ "id": 1520,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -851,7 +851,7 @@
],
"parameters": [
{
- "id": 1520,
+ "id": 1521,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -862,7 +862,7 @@
}
},
{
- "id": 1521,
+ "id": 1522,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -873,7 +873,7 @@
}
},
{
- "id": 1522,
+ "id": 1523,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -895,25 +895,25 @@
],
"type": {
"type": "reference",
- "target": 1517,
+ "target": 1518,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1509,
+ "target": 1510,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1508,
+ "target": 1509,
"name": "AuthError.constructor"
}
},
{
- "id": 1526,
+ "id": 1527,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -934,12 +934,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1516,
+ "target": 1517,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1524,
+ "id": 1525,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -996,7 +996,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1525,
+ "id": 1526,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1009,12 +1009,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1513,
+ "target": 1514,
"name": "AuthError.code"
}
},
{
- "id": 1523,
+ "id": 1524,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1040,7 +1040,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1515,
+ "target": 1516,
"name": "AuthError.status"
}
}
@@ -1048,11 +1048,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1518]
+ "children": [1519]
},
{
"title": "Properties",
- "children": [1526, 1524, 1523]
+ "children": [1527, 1525, 1524]
}
],
"sources": [
@@ -1065,14 +1065,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1507,
+ "id": 1508,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -1098,7 +1098,7 @@
},
"children": [
{
- "id": 1508,
+ "id": 1509,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1112,7 +1112,7 @@
],
"signatures": [
{
- "id": 1509,
+ "id": 1510,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -1126,7 +1126,7 @@
],
"parameters": [
{
- "id": 1510,
+ "id": 1511,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1137,7 +1137,7 @@
}
},
{
- "id": 1511,
+ "id": 1512,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -1150,7 +1150,7 @@
}
},
{
- "id": 1512,
+ "id": 1513,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -1165,7 +1165,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -1183,7 +1183,7 @@
}
},
{
- "id": 1516,
+ "id": 1517,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1203,7 +1203,7 @@
}
},
{
- "id": 1513,
+ "id": 1514,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1258,7 +1258,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1514,
+ "id": 1515,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1271,7 +1271,7 @@
}
},
{
- "id": 1515,
+ "id": 1516,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1309,11 +1309,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1508]
+ "children": [1509]
},
{
"title": "Properties",
- "children": [1516, 1513, 1515]
+ "children": [1517, 1514, 1516]
}
],
"sources": [
@@ -1337,23 +1337,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1517,
+ "target": 1518,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1527,
+ "target": 1528,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError"
}
]
},
{
- "id": 1574,
+ "id": 1575,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -1379,7 +1379,7 @@
},
"children": [
{
- "id": 1575,
+ "id": 1576,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1393,7 +1393,7 @@
],
"signatures": [
{
- "id": 1576,
+ "id": 1577,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -1407,7 +1407,7 @@
],
"parameters": [
{
- "id": 1577,
+ "id": 1578,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1418,7 +1418,7 @@
}
},
{
- "id": 1578,
+ "id": 1579,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -1435,14 +1435,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1579,
+ "id": 1580,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1581,
+ "id": 1582,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1460,7 +1460,7 @@
}
},
{
- "id": 1580,
+ "id": 1581,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1481,7 +1481,7 @@
"groups": [
{
"title": "Properties",
- "children": [1581, 1580]
+ "children": [1582, 1581]
}
],
"sources": [
@@ -1499,25 +1499,25 @@
],
"type": {
"type": "reference",
- "target": 1574,
+ "target": 1575,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1600,
+ "id": 1601,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1538,12 +1538,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1598,
+ "id": 1599,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1600,7 +1600,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1599,
+ "id": 1600,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1613,12 +1613,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1582,
+ "id": 1583,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1640,14 +1640,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1583,
+ "id": 1584,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1585,
+ "id": 1586,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1665,7 +1665,7 @@
}
},
{
- "id": 1584,
+ "id": 1585,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1686,7 +1686,7 @@
"groups": [
{
"title": "Properties",
- "children": [1585, 1584]
+ "children": [1586, 1585]
}
],
"sources": [
@@ -1702,7 +1702,7 @@
}
},
{
- "id": 1596,
+ "id": 1597,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1722,12 +1722,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1597,
+ "id": 1598,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1755,12 +1755,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
},
{
- "id": 1586,
+ "id": 1587,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -1774,7 +1774,7 @@
],
"signatures": [
{
- "id": 1587,
+ "id": 1588,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -1789,14 +1789,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1588,
+ "id": 1589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1592,
+ "id": 1593,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1818,14 +1818,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1593,
+ "id": 1594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1595,
+ "id": 1596,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1843,7 +1843,7 @@
}
},
{
- "id": 1594,
+ "id": 1595,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1864,7 +1864,7 @@
"groups": [
{
"title": "Properties",
- "children": [1595, 1594]
+ "children": [1596, 1595]
}
],
"sources": [
@@ -1880,7 +1880,7 @@
}
},
{
- "id": 1590,
+ "id": 1591,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -1898,7 +1898,7 @@
}
},
{
- "id": 1589,
+ "id": 1590,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1916,7 +1916,7 @@
}
},
{
- "id": 1591,
+ "id": 1592,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1937,7 +1937,7 @@
"groups": [
{
"title": "Properties",
- "children": [1592, 1590, 1589, 1591]
+ "children": [1593, 1591, 1590, 1592]
}
],
"sources": [
@@ -1956,15 +1956,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1575]
+ "children": [1576]
},
{
"title": "Properties",
- "children": [1600, 1598, 1582, 1596, 1597]
+ "children": [1601, 1599, 1583, 1597, 1598]
},
{
"title": "Methods",
- "children": [1586]
+ "children": [1587]
}
],
"sources": [
@@ -1977,14 +1977,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1565,
+ "id": 1566,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -2010,7 +2010,7 @@
},
"children": [
{
- "id": 1566,
+ "id": 1567,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2024,7 +2024,7 @@
],
"signatures": [
{
- "id": 1567,
+ "id": 1568,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -2038,7 +2038,7 @@
],
"parameters": [
{
- "id": 1568,
+ "id": 1569,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2051,25 +2051,25 @@
],
"type": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1573,
+ "id": 1574,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2090,12 +2090,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1571,
+ "id": 1572,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2152,7 +2152,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1572,
+ "id": 1573,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2165,12 +2165,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1569,
+ "id": 1570,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2190,12 +2190,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1570,
+ "id": 1571,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2223,7 +2223,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -2231,11 +2231,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1566]
+ "children": [1567]
},
{
"title": "Properties",
- "children": [1573, 1571, 1569, 1570]
+ "children": [1574, 1572, 1570, 1571]
}
],
"sources": [
@@ -2248,14 +2248,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1658,
+ "id": 1659,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -2281,7 +2281,7 @@
},
"children": [
{
- "id": 1659,
+ "id": 1660,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2295,7 +2295,7 @@
],
"signatures": [
{
- "id": 1660,
+ "id": 1661,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -2309,7 +2309,7 @@
],
"parameters": [
{
- "id": 1661,
+ "id": 1662,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2322,25 +2322,25 @@
],
"type": {
"type": "reference",
- "target": 1658,
+ "target": 1659,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1666,
+ "id": 1667,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2361,12 +2361,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1664,
+ "id": 1665,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2423,7 +2423,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1665,
+ "id": 1666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2436,12 +2436,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1662,
+ "id": 1663,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2461,12 +2461,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1663,
+ "id": 1664,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2494,7 +2494,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -2502,11 +2502,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1659]
+ "children": [1660]
},
{
"title": "Properties",
- "children": [1666, 1664, 1662, 1663]
+ "children": [1667, 1665, 1663, 1664]
}
],
"sources": [
@@ -2519,14 +2519,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1557,
+ "id": 1558,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -2552,7 +2552,7 @@
},
"children": [
{
- "id": 1558,
+ "id": 1559,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2566,7 +2566,7 @@
],
"signatures": [
{
- "id": 1559,
+ "id": 1560,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -2580,25 +2580,25 @@
],
"type": {
"type": "reference",
- "target": 1557,
+ "target": 1558,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1564,
+ "id": 1565,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2619,12 +2619,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1562,
+ "id": 1563,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2681,7 +2681,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1563,
+ "id": 1564,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2694,12 +2694,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1560,
+ "id": 1561,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2719,12 +2719,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1561,
+ "id": 1562,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2752,7 +2752,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -2760,11 +2760,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1558]
+ "children": [1559]
},
{
"title": "Properties",
- "children": [1564, 1562, 1560, 1561]
+ "children": [1565, 1563, 1561, 1562]
}
],
"sources": [
@@ -2777,14 +2777,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1628,
+ "id": 1629,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "declaration",
"kind": 128,
@@ -2810,7 +2810,7 @@
},
"children": [
{
- "id": 1629,
+ "id": 1630,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2824,7 +2824,7 @@
],
"signatures": [
{
- "id": 1630,
+ "id": 1631,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "signature",
"kind": 16384,
@@ -2838,25 +2838,25 @@
],
"type": {
"type": "reference",
- "target": 1628,
+ "target": 1629,
"name": "AuthPKCECodeVerifierMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1635,
+ "id": 1636,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2877,12 +2877,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1633,
+ "id": 1634,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2939,7 +2939,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1634,
+ "id": 1635,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2952,12 +2952,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1631,
+ "id": 1632,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2977,12 +2977,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1632,
+ "id": 1633,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3010,7 +3010,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -3018,11 +3018,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1629]
+ "children": [1630]
},
{
"title": "Properties",
- "children": [1635, 1633, 1631, 1632]
+ "children": [1636, 1634, 1632, 1633]
}
],
"sources": [
@@ -3035,14 +3035,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1601,
+ "id": 1602,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -3068,7 +3068,7 @@
},
"children": [
{
- "id": 1602,
+ "id": 1603,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3082,7 +3082,7 @@
],
"signatures": [
{
- "id": 1603,
+ "id": 1604,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -3096,7 +3096,7 @@
],
"parameters": [
{
- "id": 1604,
+ "id": 1605,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3107,7 +3107,7 @@
}
},
{
- "id": 1605,
+ "id": 1606,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -3124,14 +3124,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1606,
+ "id": 1607,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1608,
+ "id": 1609,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3149,7 +3149,7 @@
}
},
{
- "id": 1607,
+ "id": 1608,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3170,7 +3170,7 @@
"groups": [
{
"title": "Properties",
- "children": [1608, 1607]
+ "children": [1609, 1608]
}
],
"sources": [
@@ -3188,25 +3188,25 @@
],
"type": {
"type": "reference",
- "target": 1601,
+ "target": 1602,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1627,
+ "id": 1628,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3227,12 +3227,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1625,
+ "id": 1626,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3289,7 +3289,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1626,
+ "id": 1627,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3302,12 +3302,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1609,
+ "id": 1610,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -3329,14 +3329,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1610,
+ "id": 1611,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1612,
+ "id": 1613,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3354,7 +3354,7 @@
}
},
{
- "id": 1611,
+ "id": 1612,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3375,7 +3375,7 @@
"groups": [
{
"title": "Properties",
- "children": [1612, 1611]
+ "children": [1613, 1612]
}
],
"sources": [
@@ -3391,7 +3391,7 @@
}
},
{
- "id": 1623,
+ "id": 1624,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3411,12 +3411,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1624,
+ "id": 1625,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3444,12 +3444,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
},
{
- "id": 1613,
+ "id": 1614,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -3463,7 +3463,7 @@
],
"signatures": [
{
- "id": 1614,
+ "id": 1615,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -3478,14 +3478,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1615,
+ "id": 1616,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1619,
+ "id": 1620,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -3507,14 +3507,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1620,
+ "id": 1621,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1622,
+ "id": 1623,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3532,7 +3532,7 @@
}
},
{
- "id": 1621,
+ "id": 1622,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3553,7 +3553,7 @@
"groups": [
{
"title": "Properties",
- "children": [1622, 1621]
+ "children": [1623, 1622]
}
],
"sources": [
@@ -3569,7 +3569,7 @@
}
},
{
- "id": 1617,
+ "id": 1618,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -3587,7 +3587,7 @@
}
},
{
- "id": 1616,
+ "id": 1617,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3605,7 +3605,7 @@
}
},
{
- "id": 1618,
+ "id": 1619,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3626,7 +3626,7 @@
"groups": [
{
"title": "Properties",
- "children": [1619, 1617, 1616, 1618]
+ "children": [1620, 1618, 1617, 1619]
}
],
"sources": [
@@ -3645,15 +3645,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1602]
+ "children": [1603]
},
{
"title": "Properties",
- "children": [1627, 1625, 1609, 1623, 1624]
+ "children": [1628, 1626, 1610, 1624, 1625]
},
{
"title": "Methods",
- "children": [1613]
+ "children": [1614]
}
],
"sources": [
@@ -3666,14 +3666,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1636,
+ "id": 1637,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -3699,7 +3699,7 @@
},
"children": [
{
- "id": 1637,
+ "id": 1638,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3713,7 +3713,7 @@
],
"signatures": [
{
- "id": 1638,
+ "id": 1639,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -3727,7 +3727,7 @@
],
"parameters": [
{
- "id": 1639,
+ "id": 1640,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3738,7 +3738,7 @@
}
},
{
- "id": 1640,
+ "id": 1641,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3751,25 +3751,25 @@
],
"type": {
"type": "reference",
- "target": 1636,
+ "target": 1637,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1645,
+ "id": 1646,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3790,12 +3790,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1643,
+ "id": 1644,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3852,7 +3852,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1644,
+ "id": 1645,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3865,12 +3865,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1641,
+ "id": 1642,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3890,12 +3890,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1642,
+ "id": 1643,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3923,7 +3923,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -3931,11 +3931,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1637]
+ "children": [1638]
},
{
"title": "Properties",
- "children": [1645, 1643, 1641, 1642]
+ "children": [1646, 1644, 1642, 1643]
}
],
"sources": [
@@ -3948,14 +3948,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1549,
+ "id": 1550,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -3981,7 +3981,7 @@
},
"children": [
{
- "id": 1550,
+ "id": 1551,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3995,7 +3995,7 @@
],
"signatures": [
{
- "id": 1551,
+ "id": 1552,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -4009,25 +4009,25 @@
],
"type": {
"type": "reference",
- "target": 1549,
+ "target": 1550,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1556,
+ "id": 1557,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4048,12 +4048,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1554,
+ "id": 1555,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4110,7 +4110,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1555,
+ "id": 1556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4123,12 +4123,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1552,
+ "id": 1553,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4148,12 +4148,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1553,
+ "id": 1554,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4181,7 +4181,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -4189,11 +4189,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1550]
+ "children": [1551]
},
{
"title": "Properties",
- "children": [1556, 1554, 1552, 1553]
+ "children": [1557, 1555, 1553, 1554]
}
],
"sources": [
@@ -4206,14 +4206,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1527,
+ "id": 1528,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -4239,7 +4239,7 @@
},
"children": [
{
- "id": 1528,
+ "id": 1529,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4253,7 +4253,7 @@
],
"signatures": [
{
- "id": 1529,
+ "id": 1530,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -4267,7 +4267,7 @@
],
"parameters": [
{
- "id": 1530,
+ "id": 1531,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4278,7 +4278,7 @@
}
},
{
- "id": 1531,
+ "id": 1532,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -4291,25 +4291,25 @@
],
"type": {
"type": "reference",
- "target": 1527,
+ "target": 1528,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1509,
+ "target": 1510,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1508,
+ "target": 1509,
"name": "AuthError.constructor"
}
},
{
- "id": 1536,
+ "id": 1537,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4330,12 +4330,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1516,
+ "target": 1517,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1533,
+ "id": 1534,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4392,7 +4392,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1534,
+ "id": 1535,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4405,12 +4405,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1513,
+ "target": 1514,
"name": "AuthError.code"
}
},
{
- "id": 1532,
+ "id": 1533,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -4428,7 +4428,7 @@
}
},
{
- "id": 1535,
+ "id": 1536,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4465,7 +4465,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1515,
+ "target": 1516,
"name": "AuthError.status"
}
}
@@ -4473,11 +4473,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1528]
+ "children": [1529]
},
{
"title": "Properties",
- "children": [1536, 1533, 1532, 1535]
+ "children": [1537, 1534, 1533, 1536]
}
],
"sources": [
@@ -4490,14 +4490,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1646,
+ "id": 1647,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -4523,7 +4523,7 @@
},
"children": [
{
- "id": 1647,
+ "id": 1648,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4537,7 +4537,7 @@
],
"signatures": [
{
- "id": 1648,
+ "id": 1649,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -4551,7 +4551,7 @@
],
"parameters": [
{
- "id": 1649,
+ "id": 1650,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4562,7 +4562,7 @@
}
},
{
- "id": 1650,
+ "id": 1651,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4573,7 +4573,7 @@
}
},
{
- "id": 1651,
+ "id": 1652,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -4602,25 +4602,25 @@
],
"type": {
"type": "reference",
- "target": 1646,
+ "target": 1647,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1657,
+ "id": 1658,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4641,12 +4641,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1655,
+ "id": 1656,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4703,7 +4703,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1656,
+ "id": 1657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4716,12 +4716,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1653,
+ "id": 1654,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4741,12 +4741,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1652,
+ "id": 1653,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -4788,7 +4788,7 @@
}
},
{
- "id": 1654,
+ "id": 1655,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4816,7 +4816,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -4824,11 +4824,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1647]
+ "children": [1648]
},
{
"title": "Properties",
- "children": [1657, 1655, 1653, 1652, 1654]
+ "children": [1658, 1656, 1654, 1653, 1655]
}
],
"sources": [
@@ -4841,14 +4841,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1537,
+ "id": 1538,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -4874,7 +4874,7 @@
},
"children": [
{
- "id": 1538,
+ "id": 1539,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4888,7 +4888,7 @@
],
"signatures": [
{
- "id": 1539,
+ "id": 1540,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -4902,7 +4902,7 @@
],
"parameters": [
{
- "id": 1540,
+ "id": 1541,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4913,7 +4913,7 @@
}
},
{
- "id": 1541,
+ "id": 1542,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -4924,7 +4924,7 @@
}
},
{
- "id": 1542,
+ "id": 1543,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4935,7 +4935,7 @@
}
},
{
- "id": 1543,
+ "id": 1544,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -4957,25 +4957,25 @@
],
"type": {
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1509,
+ "target": 1510,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1508,
+ "target": 1509,
"name": "AuthError.constructor"
}
},
{
- "id": 1548,
+ "id": 1549,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4996,12 +4996,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1516,
+ "target": 1517,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1546,
+ "id": 1547,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -5058,7 +5058,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1547,
+ "id": 1548,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -5071,12 +5071,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1513,
+ "target": 1514,
"name": "AuthError.code"
}
},
{
- "id": 1544,
+ "id": 1545,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -5099,7 +5099,7 @@
}
},
{
- "id": 1545,
+ "id": 1546,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -5125,7 +5125,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1515,
+ "target": 1516,
"name": "AuthError.status"
}
}
@@ -5133,11 +5133,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1538]
+ "children": [1539]
},
{
"title": "Properties",
- "children": [1548, 1546, 1544, 1545]
+ "children": [1549, 1547, 1545, 1546]
}
],
"sources": [
@@ -5150,7 +5150,7 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -5158,47 +5158,47 @@
"extendedBy": [
{
"type": "reference",
- "target": 1549,
+ "target": 1550,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1557,
+ "target": 1558,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1574,
+ "target": 1575,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1601,
+ "target": 1602,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1628,
+ "target": 1629,
"name": "AuthPKCECodeVerifierMissingError"
},
{
"type": "reference",
- "target": 1636,
+ "target": 1637,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1646,
+ "target": 1647,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1658,
+ "target": 1659,
"name": "AuthInvalidJwtError"
}
]
@@ -6516,7 +6516,7 @@
],
"type": {
"type": "reference",
- "target": 1285,
+ "target": 1286,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -6544,7 +6544,7 @@
],
"type": {
"type": "reference",
- "target": 1411,
+ "target": 1412,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -6621,7 +6621,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 884,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -6636,7 +6636,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6749,7 +6749,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6804,7 +6804,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1094,
+ "target": 1095,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -6819,7 +6819,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1095,
+ "target": 1096,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -6903,7 +6903,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -7085,7 +7085,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -7174,7 +7174,7 @@
},
"type": {
"type": "reference",
- "target": 1306,
+ "target": 1307,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -7283,7 +7283,7 @@
},
{
"type": "reference",
- "target": 1299,
+ "target": 1300,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -7404,7 +7404,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7580,7 +7580,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7774,7 +7774,7 @@
},
"type": {
"type": "reference",
- "target": 884,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -7789,7 +7789,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -8444,7 +8444,7 @@
],
"type": {
"type": "reference",
- "target": 943,
+ "target": 944,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
@@ -8582,7 +8582,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1295,
+ "target": 1296,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -8855,7 +8855,7 @@
],
"type": {
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -8883,7 +8883,7 @@
],
"type": {
"type": "reference",
- "target": 1463,
+ "target": 1464,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -8973,7 +8973,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1298,
+ "target": 1299,
"name": "CallRefreshTokenResult",
"package": "@supabase/auth-js"
}
@@ -9021,7 +9021,7 @@
},
{
"type": "reference",
- "target": 897,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -9047,7 +9047,7 @@
],
"type": {
"type": "reference",
- "target": 1292,
+ "target": 1293,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -9168,7 +9168,7 @@
},
{
"type": "reference",
- "target": 1292,
+ "target": 1293,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -9315,7 +9315,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9384,7 +9384,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9576,7 +9576,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9695,7 +9695,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9746,7 +9746,7 @@
},
"type": {
"type": "reference",
- "target": 1310,
+ "target": 1311,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -9790,7 +9790,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9858,7 +9858,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 878,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -9927,7 +9927,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -9995,7 +9995,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 811,
+ "target": 812,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -10216,7 +10216,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -10272,7 +10272,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -10352,7 +10352,7 @@
],
"type": {
"type": "reference",
- "target": 1334,
+ "target": 1335,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
@@ -10372,7 +10372,7 @@
],
"type": {
"type": "reference",
- "target": 1319,
+ "target": 1320,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
@@ -10493,7 +10493,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -10821,7 +10821,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11018,7 +11018,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -11122,7 +11122,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 845,
+ "target": 846,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -11221,7 +11221,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11295,7 +11295,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1295,
+ "target": 1296,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -11397,7 +11397,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 944,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -11412,7 +11412,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 820,
+ "target": 821,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -11451,7 +11451,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 956,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -11466,7 +11466,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 811,
+ "target": 812,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -11654,7 +11654,7 @@
],
"type": {
"type": "reference",
- "target": 897,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11881,7 +11881,7 @@
],
"type": {
"type": "reference",
- "target": 897,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11966,7 +11966,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12083,7 +12083,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12138,7 +12138,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1040,
+ "target": 1041,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -12153,7 +12153,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 806,
+ "target": 807,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -12429,7 +12429,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12581,7 +12581,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12649,7 +12649,7 @@
},
"type": {
"type": "reference",
- "target": 907,
+ "target": 908,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -12664,7 +12664,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12719,7 +12719,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 956,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -12734,7 +12734,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 811,
+ "target": 812,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -12789,7 +12789,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 944,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -12804,7 +12804,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 820,
+ "target": 821,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -12875,7 +12875,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 926,
+ "target": 927,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -12890,7 +12890,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 806,
+ "target": 807,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -12945,7 +12945,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 921,
+ "target": 922,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -12960,7 +12960,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 815,
+ "target": 816,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -13015,7 +13015,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1054,
+ "target": 1055,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -13030,7 +13030,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 833,
+ "target": 834,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -13096,7 +13096,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1017,
+ "target": 1018,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -13333,7 +13333,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13449,7 +13449,7 @@
},
"type": {
"type": "reference",
- "target": 1310,
+ "target": 1311,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -13493,7 +13493,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13587,7 +13587,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 913,
+ "target": 914,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -13602,7 +13602,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -13787,7 +13787,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 845,
+ "target": 846,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -13912,7 +13912,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13986,7 +13986,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 878,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -14055,7 +14055,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -14110,7 +14110,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1018,
+ "target": 1019,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -14125,7 +14125,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -14583,7 +14583,7 @@
]
},
{
- "id": 1684,
+ "id": 1685,
"name": "RealtimeChannel",
"variant": "declaration",
"kind": 128,
@@ -14598,7 +14598,7 @@
},
"children": [
{
- "id": 1685,
+ "id": 1686,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -14612,7 +14612,7 @@
],
"signatures": [
{
- "id": 1686,
+ "id": 1687,
"name": "RealtimeChannel",
"variant": "signature",
"kind": 16384,
@@ -14645,7 +14645,7 @@
],
"parameters": [
{
- "id": 1687,
+ "id": 1688,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -14664,7 +14664,7 @@
}
},
{
- "id": 1688,
+ "id": 1689,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14678,7 +14678,7 @@
},
{
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -14686,14 +14686,14 @@
}
},
{
- "id": 1689,
+ "id": 1690,
"name": "socket",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14702,7 +14702,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14711,7 +14711,7 @@
]
},
{
- "id": 1693,
+ "id": 1694,
"name": "bindings",
"variant": "declaration",
"kind": 1024,
@@ -14726,7 +14726,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1694,
+ "id": 1695,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14740,7 +14740,7 @@
],
"indexSignatures": [
{
- "id": 1695,
+ "id": 1696,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14754,7 +14754,7 @@
],
"parameters": [
{
- "id": 1696,
+ "id": 1697,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14770,14 +14770,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 1697,
+ "id": 1698,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1703,
+ "id": 1704,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -14800,7 +14800,7 @@
}
},
{
- "id": 1699,
+ "id": 1700,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -14815,7 +14815,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1700,
+ "id": 1701,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14829,7 +14829,7 @@
],
"indexSignatures": [
{
- "id": 1701,
+ "id": 1702,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14843,7 +14843,7 @@
],
"parameters": [
{
- "id": 1702,
+ "id": 1703,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14864,7 +14864,7 @@
}
},
{
- "id": 1704,
+ "id": 1705,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -14884,7 +14884,7 @@
}
},
{
- "id": 1698,
+ "id": 1699,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -14905,7 +14905,7 @@
"groups": [
{
"title": "Properties",
- "children": [1703, 1699, 1704, 1698]
+ "children": [1704, 1700, 1705, 1699]
}
],
"sources": [
@@ -14924,7 +14924,7 @@
}
},
{
- "id": 1712,
+ "id": 1713,
"name": "broadcastEndpointURL",
"variant": "declaration",
"kind": 1024,
@@ -14942,7 +14942,7 @@
}
},
{
- "id": 1707,
+ "id": 1708,
"name": "joinedOnce",
"variant": "declaration",
"kind": 1024,
@@ -14960,7 +14960,7 @@
}
},
{
- "id": 1708,
+ "id": 1709,
"name": "joinPush",
"variant": "declaration",
"kind": 1024,
@@ -14984,7 +14984,7 @@
}
},
{
- "id": 1691,
+ "id": 1692,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -14998,13 +14998,13 @@
],
"type": {
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1711,
+ "id": 1712,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -15018,14 +15018,14 @@
],
"type": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1714,
+ "id": 1715,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -15043,7 +15043,7 @@
}
},
{
- "id": 1710,
+ "id": 1711,
"name": "pushBuffer",
"variant": "declaration",
"kind": 1024,
@@ -15070,7 +15070,7 @@
}
},
{
- "id": 1709,
+ "id": 1710,
"name": "rejoinTimer",
"variant": "declaration",
"kind": 1024,
@@ -15094,7 +15094,7 @@
}
},
{
- "id": 1692,
+ "id": 1693,
"name": "socket",
"variant": "declaration",
"kind": 1024,
@@ -15108,14 +15108,14 @@
],
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1706,
+ "id": 1707,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -15138,7 +15138,7 @@
}
},
{
- "id": 1713,
+ "id": 1714,
"name": "subTopic",
"variant": "declaration",
"kind": 1024,
@@ -15156,7 +15156,7 @@
}
},
{
- "id": 1705,
+ "id": 1706,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -15174,7 +15174,7 @@
}
},
{
- "id": 1690,
+ "id": 1691,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -15200,7 +15200,7 @@
}
},
{
- "id": 1952,
+ "id": 1953,
"name": "httpSend",
"variant": "declaration",
"kind": 2048,
@@ -15214,7 +15214,7 @@
],
"signatures": [
{
- "id": 1953,
+ "id": 1954,
"name": "httpSend",
"variant": "signature",
"kind": 4096,
@@ -15247,7 +15247,7 @@
],
"parameters": [
{
- "id": 1954,
+ "id": 1955,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -15266,7 +15266,7 @@
}
},
{
- "id": 1955,
+ "id": 1956,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -15285,7 +15285,7 @@
}
},
{
- "id": 1956,
+ "id": 1957,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -15303,14 +15303,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1957,
+ "id": 1958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1958,
+ "id": 1959,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -15333,7 +15333,7 @@
"groups": [
{
"title": "Properties",
- "children": [1958]
+ "children": [1959]
}
],
"sources": [
@@ -15360,14 +15360,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1959,
+ "id": 1960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1960,
+ "id": 1961,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -15388,7 +15388,7 @@
"groups": [
{
"title": "Properties",
- "children": [1960]
+ "children": [1961]
}
],
"sources": [
@@ -15403,14 +15403,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1961,
+ "id": 1962,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1964,
+ "id": 1965,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -15428,7 +15428,7 @@
}
},
{
- "id": 1963,
+ "id": 1964,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -15446,7 +15446,7 @@
}
},
{
- "id": 1962,
+ "id": 1963,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -15467,7 +15467,7 @@
"groups": [
{
"title": "Properties",
- "children": [1964, 1963, 1962]
+ "children": [1965, 1964, 1963]
}
],
"sources": [
@@ -15489,7 +15489,7 @@
]
},
{
- "id": 1746,
+ "id": 1747,
"name": "on",
"variant": "declaration",
"kind": 2048,
@@ -15573,7 +15573,7 @@
],
"signatures": [
{
- "id": 1747,
+ "id": 1748,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15595,7 +15595,7 @@
],
"parameters": [
{
- "id": 1748,
+ "id": 1749,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15606,7 +15606,7 @@
}
},
{
- "id": 1749,
+ "id": 1750,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15614,14 +15614,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1750,
+ "id": 1751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1751,
+ "id": 1752,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15642,7 +15642,7 @@
"groups": [
{
"title": "Properties",
- "children": [1751]
+ "children": [1752]
}
],
"sources": [
@@ -15656,7 +15656,7 @@
}
},
{
- "id": 1752,
+ "id": 1753,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15664,7 +15664,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1753,
+ "id": 1754,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15678,7 +15678,7 @@
],
"signatures": [
{
- "id": 1754,
+ "id": 1755,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15702,14 +15702,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1755,
+ "id": 1756,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15731,7 +15731,7 @@
],
"typeParameters": [
{
- "id": 1756,
+ "id": 1757,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15739,7 +15739,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1757,
+ "id": 1758,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15753,7 +15753,7 @@
],
"indexSignatures": [
{
- "id": 1758,
+ "id": 1759,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15767,7 +15767,7 @@
],
"parameters": [
{
- "id": 1759,
+ "id": 1760,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15790,7 +15790,7 @@
],
"parameters": [
{
- "id": 1760,
+ "id": 1761,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15801,7 +15801,7 @@
}
},
{
- "id": 1761,
+ "id": 1762,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15809,14 +15809,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1762,
+ "id": 1763,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1763,
+ "id": 1764,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15837,7 +15837,7 @@
"groups": [
{
"title": "Properties",
- "children": [1763]
+ "children": [1764]
}
],
"sources": [
@@ -15851,7 +15851,7 @@
}
},
{
- "id": 1764,
+ "id": 1765,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15859,7 +15859,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1765,
+ "id": 1766,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15873,7 +15873,7 @@
],
"signatures": [
{
- "id": 1766,
+ "id": 1767,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15887,18 +15887,18 @@
],
"parameters": [
{
- "id": 1767,
+ "id": 1768,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2197,
+ "target": 2198,
"typeArguments": [
{
"type": "reference",
- "target": 1756,
+ "target": 1757,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15921,14 +15921,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1768,
+ "id": 1769,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15950,7 +15950,7 @@
],
"typeParameters": [
{
- "id": 1769,
+ "id": 1770,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15958,7 +15958,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1770,
+ "id": 1771,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15972,7 +15972,7 @@
],
"indexSignatures": [
{
- "id": 1771,
+ "id": 1772,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15986,7 +15986,7 @@
],
"parameters": [
{
- "id": 1772,
+ "id": 1773,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16009,7 +16009,7 @@
],
"parameters": [
{
- "id": 1773,
+ "id": 1774,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16020,7 +16020,7 @@
}
},
{
- "id": 1774,
+ "id": 1775,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -16028,14 +16028,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1775,
+ "id": 1776,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1776,
+ "id": 1777,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16056,7 +16056,7 @@
"groups": [
{
"title": "Properties",
- "children": [1776]
+ "children": [1777]
}
],
"sources": [
@@ -16070,7 +16070,7 @@
}
},
{
- "id": 1777,
+ "id": 1778,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16078,7 +16078,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1778,
+ "id": 1779,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16092,7 +16092,7 @@
],
"signatures": [
{
- "id": 1779,
+ "id": 1780,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16106,18 +16106,18 @@
],
"parameters": [
{
- "id": 1780,
+ "id": 1781,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2207,
+ "target": 2208,
"typeArguments": [
{
"type": "reference",
- "target": 1769,
+ "target": 1770,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16140,14 +16140,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1781,
+ "id": 1782,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16169,7 +16169,7 @@
],
"typeParameters": [
{
- "id": 1782,
+ "id": 1783,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16177,7 +16177,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1783,
+ "id": 1784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16191,7 +16191,7 @@
],
"indexSignatures": [
{
- "id": 1784,
+ "id": 1785,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16205,7 +16205,7 @@
],
"parameters": [
{
- "id": 1785,
+ "id": 1786,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16228,7 +16228,7 @@
],
"parameters": [
{
- "id": 1786,
+ "id": 1787,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16239,14 +16239,14 @@
}
},
{
- "id": 1787,
+ "id": 1788,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16258,7 +16258,7 @@
}
},
{
- "id": 1788,
+ "id": 1789,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16266,7 +16266,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1789,
+ "id": 1790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16280,7 +16280,7 @@
],
"signatures": [
{
- "id": 1790,
+ "id": 1791,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16294,18 +16294,18 @@
],
"parameters": [
{
- "id": 1791,
+ "id": 1792,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2163,
+ "target": 2164,
"typeArguments": [
{
"type": "reference",
- "target": 1782,
+ "target": 1783,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16328,14 +16328,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1792,
+ "id": 1793,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16357,7 +16357,7 @@
],
"typeParameters": [
{
- "id": 1793,
+ "id": 1794,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16365,7 +16365,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1794,
+ "id": 1795,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16379,7 +16379,7 @@
],
"indexSignatures": [
{
- "id": 1795,
+ "id": 1796,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16393,7 +16393,7 @@
],
"parameters": [
{
- "id": 1796,
+ "id": 1797,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16416,7 +16416,7 @@
],
"parameters": [
{
- "id": 1797,
+ "id": 1798,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16427,14 +16427,14 @@
}
},
{
- "id": 1798,
+ "id": 1799,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16446,7 +16446,7 @@
}
},
{
- "id": 1799,
+ "id": 1800,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16454,7 +16454,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1800,
+ "id": 1801,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16468,7 +16468,7 @@
],
"signatures": [
{
- "id": 1801,
+ "id": 1802,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16482,18 +16482,18 @@
],
"parameters": [
{
- "id": 1802,
+ "id": 1803,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2168,
+ "target": 2169,
"typeArguments": [
{
"type": "reference",
- "target": 1793,
+ "target": 1794,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16516,14 +16516,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1803,
+ "id": 1804,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16545,7 +16545,7 @@
],
"typeParameters": [
{
- "id": 1804,
+ "id": 1805,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16553,7 +16553,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1805,
+ "id": 1806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16567,7 +16567,7 @@
],
"indexSignatures": [
{
- "id": 1806,
+ "id": 1807,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16581,7 +16581,7 @@
],
"parameters": [
{
- "id": 1807,
+ "id": 1808,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16604,7 +16604,7 @@
],
"parameters": [
{
- "id": 1808,
+ "id": 1809,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16615,14 +16615,14 @@
}
},
{
- "id": 1809,
+ "id": 1810,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16634,7 +16634,7 @@
}
},
{
- "id": 1810,
+ "id": 1811,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16642,7 +16642,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1811,
+ "id": 1812,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16656,7 +16656,7 @@
],
"signatures": [
{
- "id": 1812,
+ "id": 1813,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16670,18 +16670,18 @@
],
"parameters": [
{
- "id": 1813,
+ "id": 1814,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2178,
+ "target": 2179,
"typeArguments": [
{
"type": "reference",
- "target": 1804,
+ "target": 1805,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16704,14 +16704,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1814,
+ "id": 1815,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16733,7 +16733,7 @@
],
"typeParameters": [
{
- "id": 1815,
+ "id": 1816,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16741,7 +16741,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1816,
+ "id": 1817,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16755,7 +16755,7 @@
],
"indexSignatures": [
{
- "id": 1817,
+ "id": 1818,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16769,7 +16769,7 @@
],
"parameters": [
{
- "id": 1818,
+ "id": 1819,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16792,7 +16792,7 @@
],
"parameters": [
{
- "id": 1819,
+ "id": 1820,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16803,14 +16803,14 @@
}
},
{
- "id": 1820,
+ "id": 1821,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16822,7 +16822,7 @@
}
},
{
- "id": 1821,
+ "id": 1822,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16830,7 +16830,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1822,
+ "id": 1823,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16844,7 +16844,7 @@
],
"signatures": [
{
- "id": 1823,
+ "id": 1824,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16858,18 +16858,18 @@
],
"parameters": [
{
- "id": 1824,
+ "id": 1825,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2187,
+ "target": 2188,
"typeArguments": [
{
"type": "reference",
- "target": 1815,
+ "target": 1816,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16892,14 +16892,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1825,
+ "id": 1826,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16921,7 +16921,7 @@
],
"typeParameters": [
{
- "id": 1826,
+ "id": 1827,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16929,7 +16929,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1827,
+ "id": 1828,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16943,7 +16943,7 @@
],
"indexSignatures": [
{
- "id": 1828,
+ "id": 1829,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16957,7 +16957,7 @@
],
"parameters": [
{
- "id": 1829,
+ "id": 1830,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16980,7 +16980,7 @@
],
"parameters": [
{
- "id": 1830,
+ "id": 1831,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16991,14 +16991,14 @@
}
},
{
- "id": 1831,
+ "id": 1832,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "union",
@@ -17027,7 +17027,7 @@
}
},
{
- "id": 1832,
+ "id": 1833,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17035,7 +17035,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1833,
+ "id": 1834,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17049,7 +17049,7 @@
],
"signatures": [
{
- "id": 1834,
+ "id": 1835,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17063,18 +17063,18 @@
],
"parameters": [
{
- "id": 1835,
+ "id": 1836,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2163,
+ "target": 2164,
"typeArguments": [
{
"type": "reference",
- "target": 1826,
+ "target": 1827,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17097,14 +17097,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1836,
+ "id": 1837,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17126,7 +17126,7 @@
],
"parameters": [
{
- "id": 1837,
+ "id": 1838,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17145,7 +17145,7 @@
}
},
{
- "id": 1838,
+ "id": 1839,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17161,14 +17161,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1839,
+ "id": 1840,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1840,
+ "id": 1841,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17189,7 +17189,7 @@
"groups": [
{
"title": "Properties",
- "children": [1840]
+ "children": [1841]
}
],
"sources": [
@@ -17203,7 +17203,7 @@
}
},
{
- "id": 1841,
+ "id": 1842,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17219,7 +17219,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1842,
+ "id": 1843,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17233,7 +17233,7 @@
],
"signatures": [
{
- "id": 1843,
+ "id": 1844,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17247,7 +17247,7 @@
],
"parameters": [
{
- "id": 1844,
+ "id": 1845,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17255,14 +17255,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1845,
+ "id": 1846,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1847,
+ "id": 1848,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17280,7 +17280,7 @@
}
},
{
- "id": 1848,
+ "id": 1849,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -17297,14 +17297,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1849,
+ "id": 1850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1851,
+ "id": 1852,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17322,7 +17322,7 @@
}
},
{
- "id": 1850,
+ "id": 1851,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -17345,7 +17345,7 @@
"groups": [
{
"title": "Properties",
- "children": [1851, 1850]
+ "children": [1852, 1851]
}
],
"sources": [
@@ -17359,7 +17359,7 @@
}
},
{
- "id": 1846,
+ "id": 1847,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17380,7 +17380,7 @@
"groups": [
{
"title": "Properties",
- "children": [1847, 1848, 1846]
+ "children": [1848, 1849, 1847]
}
],
"sources": [
@@ -17392,7 +17392,7 @@
],
"indexSignatures": [
{
- "id": 1852,
+ "id": 1853,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17406,7 +17406,7 @@
],
"parameters": [
{
- "id": 1853,
+ "id": 1854,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17439,14 +17439,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1854,
+ "id": 1855,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17468,7 +17468,7 @@
],
"typeParameters": [
{
- "id": 1855,
+ "id": 1856,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17476,7 +17476,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1856,
+ "id": 1857,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17490,7 +17490,7 @@
],
"indexSignatures": [
{
- "id": 1857,
+ "id": 1858,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17504,7 +17504,7 @@
],
"parameters": [
{
- "id": 1858,
+ "id": 1859,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17527,7 +17527,7 @@
],
"parameters": [
{
- "id": 1859,
+ "id": 1860,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17538,7 +17538,7 @@
}
},
{
- "id": 1860,
+ "id": 1861,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17546,14 +17546,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1861,
+ "id": 1862,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1862,
+ "id": 1863,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17574,7 +17574,7 @@
"groups": [
{
"title": "Properties",
- "children": [1862]
+ "children": [1863]
}
],
"sources": [
@@ -17588,7 +17588,7 @@
}
},
{
- "id": 1863,
+ "id": 1864,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17596,7 +17596,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1864,
+ "id": 1865,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17610,7 +17610,7 @@
],
"signatures": [
{
- "id": 1865,
+ "id": 1866,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17624,7 +17624,7 @@
],
"parameters": [
{
- "id": 1866,
+ "id": 1867,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17632,14 +17632,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1867,
+ "id": 1868,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1869,
+ "id": 1870,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17657,7 +17657,7 @@
}
},
{
- "id": 1870,
+ "id": 1871,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -17674,14 +17674,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1871,
+ "id": 1872,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1873,
+ "id": 1874,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17699,7 +17699,7 @@
}
},
{
- "id": 1872,
+ "id": 1873,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -17722,7 +17722,7 @@
"groups": [
{
"title": "Properties",
- "children": [1873, 1872]
+ "children": [1874, 1873]
}
],
"sources": [
@@ -17736,7 +17736,7 @@
}
},
{
- "id": 1874,
+ "id": 1875,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17750,14 +17750,14 @@
],
"type": {
"type": "reference",
- "target": 1855,
+ "target": 1856,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 1868,
+ "id": 1869,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17778,7 +17778,7 @@
"groups": [
{
"title": "Properties",
- "children": [1869, 1870, 1874, 1868]
+ "children": [1870, 1871, 1875, 1869]
}
],
"sources": [
@@ -17804,14 +17804,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1875,
+ "id": 1876,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17833,7 +17833,7 @@
],
"typeParameters": [
{
- "id": 1876,
+ "id": 1877,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17861,7 +17861,7 @@
],
"parameters": [
{
- "id": 1877,
+ "id": 1878,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17872,7 +17872,7 @@
}
},
{
- "id": 1878,
+ "id": 1879,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17880,14 +17880,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1879,
+ "id": 1880,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1880,
+ "id": 1881,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17901,7 +17901,7 @@
],
"type": {
"type": "reference",
- "target": 2233,
+ "target": 2234,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
@@ -17911,7 +17911,7 @@
"groups": [
{
"title": "Properties",
- "children": [1880]
+ "children": [1881]
}
],
"sources": [
@@ -17925,7 +17925,7 @@
}
},
{
- "id": 1881,
+ "id": 1882,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17933,7 +17933,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1882,
+ "id": 1883,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17947,7 +17947,7 @@
],
"signatures": [
{
- "id": 1883,
+ "id": 1884,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17961,7 +17961,7 @@
],
"parameters": [
{
- "id": 1884,
+ "id": 1885,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17969,14 +17969,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1885,
+ "id": 1886,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1887,
+ "id": 1888,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17990,14 +17990,14 @@
],
"type": {
"type": "reference",
- "target": 2233,
+ "target": 2234,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
}
},
{
- "id": 1888,
+ "id": 1889,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18018,7 +18018,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1876,
+ "target": 1877,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18029,7 +18029,7 @@
}
},
{
- "id": 1886,
+ "id": 1887,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18050,7 +18050,7 @@
"groups": [
{
"title": "Properties",
- "children": [1887, 1888, 1886]
+ "children": [1888, 1889, 1887]
}
],
"sources": [
@@ -18076,14 +18076,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1889,
+ "id": 1890,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18105,7 +18105,7 @@
],
"typeParameters": [
{
- "id": 1890,
+ "id": 1891,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18113,7 +18113,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1891,
+ "id": 1892,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18127,7 +18127,7 @@
],
"indexSignatures": [
{
- "id": 1892,
+ "id": 1893,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18141,7 +18141,7 @@
],
"parameters": [
{
- "id": 1893,
+ "id": 1894,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18164,7 +18164,7 @@
],
"parameters": [
{
- "id": 1894,
+ "id": 1895,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18175,7 +18175,7 @@
}
},
{
- "id": 1895,
+ "id": 1896,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18183,14 +18183,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1896,
+ "id": 1897,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1897,
+ "id": 1898,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18204,7 +18204,7 @@
],
"type": {
"type": "reference",
- "target": 2234,
+ "target": 2235,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
@@ -18214,7 +18214,7 @@
"groups": [
{
"title": "Properties",
- "children": [1897]
+ "children": [1898]
}
],
"sources": [
@@ -18228,7 +18228,7 @@
}
},
{
- "id": 1898,
+ "id": 1899,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18236,7 +18236,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1899,
+ "id": 1900,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18250,7 +18250,7 @@
],
"signatures": [
{
- "id": 1900,
+ "id": 1901,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18264,7 +18264,7 @@
],
"parameters": [
{
- "id": 1901,
+ "id": 1902,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18272,14 +18272,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1902,
+ "id": 1903,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1904,
+ "id": 1905,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18293,14 +18293,14 @@
],
"type": {
"type": "reference",
- "target": 2234,
+ "target": 2235,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
}
},
{
- "id": 1905,
+ "id": 1906,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18321,7 +18321,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1890,
+ "target": 1891,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18332,7 +18332,7 @@
}
},
{
- "id": 1903,
+ "id": 1904,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18353,7 +18353,7 @@
"groups": [
{
"title": "Properties",
- "children": [1904, 1905, 1903]
+ "children": [1905, 1906, 1904]
}
],
"sources": [
@@ -18379,14 +18379,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1906,
+ "id": 1907,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18408,7 +18408,7 @@
],
"typeParameters": [
{
- "id": 1907,
+ "id": 1908,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18416,7 +18416,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1908,
+ "id": 1909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18430,7 +18430,7 @@
],
"indexSignatures": [
{
- "id": 1909,
+ "id": 1910,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18444,7 +18444,7 @@
],
"parameters": [
{
- "id": 1910,
+ "id": 1911,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18467,7 +18467,7 @@
],
"parameters": [
{
- "id": 1911,
+ "id": 1912,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18478,7 +18478,7 @@
}
},
{
- "id": 1912,
+ "id": 1913,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18486,14 +18486,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1913,
+ "id": 1914,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1914,
+ "id": 1915,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18507,7 +18507,7 @@
],
"type": {
"type": "reference",
- "target": 2235,
+ "target": 2236,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
@@ -18517,7 +18517,7 @@
"groups": [
{
"title": "Properties",
- "children": [1914]
+ "children": [1915]
}
],
"sources": [
@@ -18531,7 +18531,7 @@
}
},
{
- "id": 1915,
+ "id": 1916,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18539,7 +18539,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1916,
+ "id": 1917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18553,7 +18553,7 @@
],
"signatures": [
{
- "id": 1917,
+ "id": 1918,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18567,7 +18567,7 @@
],
"parameters": [
{
- "id": 1918,
+ "id": 1919,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18575,14 +18575,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1919,
+ "id": 1920,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1921,
+ "id": 1922,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18596,14 +18596,14 @@
],
"type": {
"type": "reference",
- "target": 2235,
+ "target": 2236,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
}
},
{
- "id": 1922,
+ "id": 1923,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18624,7 +18624,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1907,
+ "target": 1908,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18635,7 +18635,7 @@
}
},
{
- "id": 1920,
+ "id": 1921,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18656,7 +18656,7 @@
"groups": [
{
"title": "Properties",
- "children": [1921, 1922, 1920]
+ "children": [1922, 1923, 1921]
}
],
"sources": [
@@ -18682,14 +18682,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1923,
+ "id": 1924,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18711,7 +18711,7 @@
],
"typeParameters": [
{
- "id": 1924,
+ "id": 1925,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18719,7 +18719,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1925,
+ "id": 1926,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18733,7 +18733,7 @@
],
"indexSignatures": [
{
- "id": 1926,
+ "id": 1927,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18747,7 +18747,7 @@
],
"parameters": [
{
- "id": 1927,
+ "id": 1928,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18770,7 +18770,7 @@
],
"parameters": [
{
- "id": 1928,
+ "id": 1929,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18781,7 +18781,7 @@
}
},
{
- "id": 1929,
+ "id": 1930,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18789,14 +18789,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1930,
+ "id": 1931,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1931,
+ "id": 1932,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18810,7 +18810,7 @@
],
"type": {
"type": "reference",
- "target": 2236,
+ "target": 2237,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
@@ -18820,7 +18820,7 @@
"groups": [
{
"title": "Properties",
- "children": [1931]
+ "children": [1932]
}
],
"sources": [
@@ -18834,7 +18834,7 @@
}
},
{
- "id": 1932,
+ "id": 1933,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18842,7 +18842,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1933,
+ "id": 1934,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18856,7 +18856,7 @@
],
"signatures": [
{
- "id": 1934,
+ "id": 1935,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18870,7 +18870,7 @@
],
"parameters": [
{
- "id": 1935,
+ "id": 1936,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18878,14 +18878,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1936,
+ "id": 1937,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1938,
+ "id": 1939,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18899,14 +18899,14 @@
],
"type": {
"type": "reference",
- "target": 2236,
+ "target": 2237,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
}
},
{
- "id": 1939,
+ "id": 1940,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18927,7 +18927,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1924,
+ "target": 1925,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18938,7 +18938,7 @@
}
},
{
- "id": 1937,
+ "id": 1938,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18959,7 +18959,7 @@
"groups": [
{
"title": "Properties",
- "children": [1938, 1939, 1937]
+ "children": [1939, 1940, 1938]
}
],
"sources": [
@@ -18985,14 +18985,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1940,
+ "id": 1941,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -19014,7 +19014,7 @@
],
"typeParameters": [
{
- "id": 1941,
+ "id": 1942,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -19022,7 +19022,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1942,
+ "id": 1943,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19036,7 +19036,7 @@
],
"indexSignatures": [
{
- "id": 1943,
+ "id": 1944,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19050,7 +19050,7 @@
],
"parameters": [
{
- "id": 1944,
+ "id": 1945,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19073,7 +19073,7 @@
],
"parameters": [
{
- "id": 1945,
+ "id": 1946,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -19084,7 +19084,7 @@
}
},
{
- "id": 1946,
+ "id": 1947,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -19092,7 +19092,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1947,
+ "id": 1948,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19101,7 +19101,7 @@
}
},
{
- "id": 1948,
+ "id": 1949,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -19109,7 +19109,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1949,
+ "id": 1950,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19123,7 +19123,7 @@
],
"signatures": [
{
- "id": 1950,
+ "id": 1951,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19137,7 +19137,7 @@
],
"parameters": [
{
- "id": 1951,
+ "id": 1952,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -19160,7 +19160,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19169,7 +19169,7 @@
]
},
{
- "id": 1723,
+ "id": 1724,
"name": "presenceState",
"variant": "declaration",
"kind": 2048,
@@ -19183,7 +19183,7 @@
],
"signatures": [
{
- "id": 1724,
+ "id": 1725,
"name": "presenceState",
"variant": "signature",
"kind": 4096,
@@ -19205,7 +19205,7 @@
],
"typeParameters": [
{
- "id": 1725,
+ "id": 1726,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -19213,7 +19213,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1726,
+ "id": 1727,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19227,7 +19227,7 @@
],
"indexSignatures": [
{
- "id": 1727,
+ "id": 1728,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19241,7 +19241,7 @@
],
"parameters": [
{
- "id": 1728,
+ "id": 1729,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19263,7 +19263,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 1729,
+ "id": 1730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19274,11 +19274,11 @@
],
"type": {
"type": "reference",
- "target": 2217,
+ "target": 2218,
"typeArguments": [
{
"type": "reference",
- "target": 1725,
+ "target": 1726,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -19291,7 +19291,7 @@
]
},
{
- "id": 1965,
+ "id": 1966,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -19305,7 +19305,7 @@
],
"signatures": [
{
- "id": 1966,
+ "id": 1967,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -19327,7 +19327,7 @@
],
"parameters": [
{
- "id": 1967,
+ "id": 1968,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -19343,14 +19343,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1968,
+ "id": 1969,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1970,
+ "id": 1971,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -19376,7 +19376,7 @@
}
},
{
- "id": 1971,
+ "id": 1972,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -19404,7 +19404,7 @@
}
},
{
- "id": 1969,
+ "id": 1970,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -19446,7 +19446,7 @@
"groups": [
{
"title": "Properties",
- "children": [1970, 1971, 1969]
+ "children": [1971, 1972, 1970]
}
],
"sources": [
@@ -19458,7 +19458,7 @@
],
"indexSignatures": [
{
- "id": 1972,
+ "id": 1973,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19472,7 +19472,7 @@
],
"parameters": [
{
- "id": 1973,
+ "id": 1974,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19493,7 +19493,7 @@
}
},
{
- "id": 1974,
+ "id": 1975,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -19511,7 +19511,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1975,
+ "id": 1976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19525,7 +19525,7 @@
],
"indexSignatures": [
{
- "id": 1976,
+ "id": 1977,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19539,7 +19539,7 @@
],
"parameters": [
{
- "id": 1977,
+ "id": 1978,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19569,7 +19569,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2003,
+ "target": 2004,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19581,7 +19581,7 @@
]
},
{
- "id": 1715,
+ "id": 1716,
"name": "subscribe",
"variant": "declaration",
"kind": 2048,
@@ -19595,7 +19595,7 @@
],
"signatures": [
{
- "id": 1716,
+ "id": 1717,
"name": "subscribe",
"variant": "signature",
"kind": 4096,
@@ -19617,7 +19617,7 @@
],
"parameters": [
{
- "id": 1717,
+ "id": 1718,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -19627,7 +19627,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1718,
+ "id": 1719,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19641,7 +19641,7 @@
],
"signatures": [
{
- "id": 1719,
+ "id": 1720,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19655,20 +19655,20 @@
],
"parameters": [
{
- "id": 1720,
+ "id": 1721,
"name": "status",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2241,
+ "target": 2242,
"name": "REALTIME_SUBSCRIBE_STATES",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1721,
+ "id": 1722,
"name": "err",
"variant": "param",
"kind": 32768,
@@ -19696,7 +19696,7 @@
}
},
{
- "id": 1722,
+ "id": 1723,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -19711,7 +19711,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19720,7 +19720,7 @@
]
},
{
- "id": 1987,
+ "id": 1988,
"name": "teardown",
"variant": "declaration",
"kind": 2048,
@@ -19734,7 +19734,7 @@
],
"signatures": [
{
- "id": 1988,
+ "id": 1989,
"name": "teardown",
"variant": "signature",
"kind": 4096,
@@ -19762,7 +19762,7 @@
]
},
{
- "id": 1730,
+ "id": 1731,
"name": "track",
"variant": "declaration",
"kind": 2048,
@@ -19776,7 +19776,7 @@
],
"signatures": [
{
- "id": 1731,
+ "id": 1732,
"name": "track",
"variant": "signature",
"kind": 4096,
@@ -19806,7 +19806,7 @@
],
"parameters": [
{
- "id": 1732,
+ "id": 1733,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -19814,7 +19814,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1733,
+ "id": 1734,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19828,7 +19828,7 @@
],
"indexSignatures": [
{
- "id": 1734,
+ "id": 1735,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19842,7 +19842,7 @@
],
"parameters": [
{
- "id": 1735,
+ "id": 1736,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19863,7 +19863,7 @@
}
},
{
- "id": 1736,
+ "id": 1737,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -19873,7 +19873,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1737,
+ "id": 1738,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19887,7 +19887,7 @@
],
"indexSignatures": [
{
- "id": 1738,
+ "id": 1739,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19901,7 +19901,7 @@
],
"parameters": [
{
- "id": 1739,
+ "id": 1740,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19931,7 +19931,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2003,
+ "target": 2004,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19943,7 +19943,7 @@
]
},
{
- "id": 1984,
+ "id": 1985,
"name": "unsubscribe",
"variant": "declaration",
"kind": 2048,
@@ -19957,7 +19957,7 @@
],
"signatures": [
{
- "id": 1985,
+ "id": 1986,
"name": "unsubscribe",
"variant": "signature",
"kind": 4096,
@@ -19987,7 +19987,7 @@
],
"parameters": [
{
- "id": 1986,
+ "id": 1987,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -20032,7 +20032,7 @@
]
},
{
- "id": 1740,
+ "id": 1741,
"name": "untrack",
"variant": "declaration",
"kind": 2048,
@@ -20046,7 +20046,7 @@
],
"signatures": [
{
- "id": 1741,
+ "id": 1742,
"name": "untrack",
"variant": "signature",
"kind": 4096,
@@ -20068,7 +20068,7 @@
],
"parameters": [
{
- "id": 1742,
+ "id": 1743,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -20078,7 +20078,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1743,
+ "id": 1744,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20092,7 +20092,7 @@
],
"indexSignatures": [
{
- "id": 1744,
+ "id": 1745,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20106,7 +20106,7 @@
],
"parameters": [
{
- "id": 1745,
+ "id": 1746,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20136,7 +20136,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2003,
+ "target": 2004,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -20148,7 +20148,7 @@
]
},
{
- "id": 1978,
+ "id": 1979,
"name": "updateJoinPayload",
"variant": "declaration",
"kind": 2048,
@@ -20162,7 +20162,7 @@
],
"signatures": [
{
- "id": 1979,
+ "id": 1980,
"name": "updateJoinPayload",
"variant": "signature",
"kind": 4096,
@@ -20184,7 +20184,7 @@
],
"parameters": [
{
- "id": 1980,
+ "id": 1981,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -20192,7 +20192,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1981,
+ "id": 1982,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20206,7 +20206,7 @@
],
"indexSignatures": [
{
- "id": 1982,
+ "id": 1983,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20220,7 +20220,7 @@
],
"parameters": [
{
- "id": 1983,
+ "id": 1984,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20252,17 +20252,17 @@
"groups": [
{
"title": "Constructors",
- "children": [1685]
+ "children": [1686]
},
{
"title": "Properties",
"children": [
- 1693, 1712, 1707, 1708, 1691, 1711, 1714, 1710, 1709, 1692, 1706, 1713, 1705, 1690
+ 1694, 1713, 1708, 1709, 1692, 1712, 1715, 1711, 1710, 1693, 1707, 1714, 1706, 1691
]
},
{
"title": "Methods",
- "children": [1952, 1746, 1723, 1965, 1715, 1987, 1730, 1984, 1740, 1978]
+ "children": [1953, 1747, 1724, 1966, 1716, 1988, 1731, 1985, 1741, 1979]
}
],
"sources": [
@@ -20274,14 +20274,14 @@
]
},
{
- "id": 2004,
+ "id": 2005,
"name": "RealtimeClient",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 2005,
+ "id": 2006,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -20295,7 +20295,7 @@
],
"signatures": [
{
- "id": 2006,
+ "id": 2007,
"name": "RealtimeClient",
"variant": "signature",
"kind": 16384,
@@ -20328,7 +20328,7 @@
],
"parameters": [
{
- "id": 2007,
+ "id": 2008,
"name": "endPoint",
"variant": "param",
"kind": 32768,
@@ -20347,7 +20347,7 @@
}
},
{
- "id": 2008,
+ "id": 2009,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -20356,7 +20356,7 @@
},
"type": {
"type": "reference",
- "target": 2118,
+ "target": 2119,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js",
"highlightedProperties": {
@@ -20458,7 +20458,7 @@
],
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -20467,7 +20467,7 @@
]
},
{
- "id": 2058,
+ "id": 2059,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -20489,7 +20489,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2059,
+ "id": 2060,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20503,7 +20503,7 @@
],
"signatures": [
{
- "id": 2060,
+ "id": 2061,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20547,7 +20547,7 @@
}
},
{
- "id": 2009,
+ "id": 2010,
"name": "accessTokenValue",
"variant": "declaration",
"kind": 1024,
@@ -20574,7 +20574,7 @@
}
},
{
- "id": 2010,
+ "id": 2011,
"name": "apiKey",
"variant": "declaration",
"kind": 1024,
@@ -20601,7 +20601,7 @@
}
},
{
- "id": 2012,
+ "id": 2013,
"name": "channels",
"variant": "declaration",
"kind": 1024,
@@ -20617,7 +20617,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -20625,7 +20625,7 @@
}
},
{
- "id": 2041,
+ "id": 2042,
"name": "conn",
"variant": "declaration",
"kind": 1024,
@@ -20646,7 +20646,7 @@
},
{
"type": "reference",
- "target": 2263,
+ "target": 2264,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -20654,7 +20654,7 @@
}
},
{
- "id": 2039,
+ "id": 2040,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -20677,7 +20677,7 @@
}
},
{
- "id": 2038,
+ "id": 2039,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -20700,7 +20700,7 @@
}
},
{
- "id": 2013,
+ "id": 2014,
"name": "endPoint",
"variant": "declaration",
"kind": 1024,
@@ -20718,7 +20718,7 @@
}
},
{
- "id": 2050,
+ "id": 2051,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -20733,7 +20733,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2051,
+ "id": 2052,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20752,7 +20752,7 @@
],
"signatures": [
{
- "id": 2052,
+ "id": 2053,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20774,7 +20774,7 @@
],
"parameters": [
{
- "id": 2053,
+ "id": 2054,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -20804,7 +20804,7 @@
}
},
{
- "id": 2054,
+ "id": 2055,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -20844,7 +20844,7 @@
}
},
{
- "id": 2055,
+ "id": 2056,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20866,7 +20866,7 @@
],
"parameters": [
{
- "id": 2056,
+ "id": 2057,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -20900,7 +20900,7 @@
}
},
{
- "id": 2057,
+ "id": 2058,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -20944,7 +20944,7 @@
}
},
{
- "id": 2015,
+ "id": 2016,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -20975,7 +20975,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2016,
+ "id": 2017,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20989,7 +20989,7 @@
],
"indexSignatures": [
{
- "id": 2017,
+ "id": 2018,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -21003,7 +21003,7 @@
],
"parameters": [
{
- "id": 2018,
+ "id": 2019,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -21024,7 +21024,7 @@
}
},
{
- "id": 2028,
+ "id": 2029,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -21039,7 +21039,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2029,
+ "id": 2030,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -21053,7 +21053,7 @@
],
"signatures": [
{
- "id": 2030,
+ "id": 2031,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -21067,7 +21067,7 @@
],
"parameters": [
{
- "id": 2031,
+ "id": 2032,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -21083,7 +21083,7 @@
}
},
{
- "id": 2032,
+ "id": 2033,
"name": "latency",
"variant": "param",
"kind": 32768,
@@ -21106,7 +21106,7 @@
}
},
{
- "id": 2025,
+ "id": 2026,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -21124,7 +21124,7 @@
}
},
{
- "id": 2026,
+ "id": 2027,
"name": "heartbeatTimer",
"variant": "declaration",
"kind": 1024,
@@ -21157,7 +21157,7 @@
}
},
{
- "id": 2014,
+ "id": 2015,
"name": "httpEndpoint",
"variant": "declaration",
"kind": 1024,
@@ -21175,7 +21175,7 @@
}
},
{
- "id": 2036,
+ "id": 2037,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -21198,7 +21198,7 @@
}
},
{
- "id": 2037,
+ "id": 2038,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -21223,7 +21223,7 @@
}
},
{
- "id": 2019,
+ "id": 2020,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -21240,7 +21240,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2020,
+ "id": 2021,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -21254,7 +21254,7 @@
],
"indexSignatures": [
{
- "id": 2021,
+ "id": 2022,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -21268,7 +21268,7 @@
],
"parameters": [
{
- "id": 2022,
+ "id": 2023,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -21289,7 +21289,7 @@
}
},
{
- "id": 2027,
+ "id": 2028,
"name": "pendingHeartbeatRef",
"variant": "declaration",
"kind": 1024,
@@ -21316,7 +21316,7 @@
}
},
{
- "id": 2040,
+ "id": 2041,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -21339,7 +21339,7 @@
}
},
{
- "id": 2034,
+ "id": 2035,
"name": "reconnectTimer",
"variant": "declaration",
"kind": 1024,
@@ -21372,7 +21372,7 @@
}
},
{
- "id": 2033,
+ "id": 2034,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -21390,7 +21390,7 @@
}
},
{
- "id": 2042,
+ "id": 2043,
"name": "sendBuffer",
"variant": "declaration",
"kind": 1024,
@@ -21416,7 +21416,7 @@
}
},
{
- "id": 2043,
+ "id": 2044,
"name": "serializer",
"variant": "declaration",
"kind": 1024,
@@ -21440,7 +21440,7 @@
}
},
{
- "id": 2044,
+ "id": 2045,
"name": "stateChangeCallbacks",
"variant": "declaration",
"kind": 1024,
@@ -21455,14 +21455,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2045,
+ "id": 2046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2047,
+ "id": 2048,
"name": "close",
"variant": "declaration",
"kind": 1024,
@@ -21488,7 +21488,7 @@
}
},
{
- "id": 2048,
+ "id": 2049,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -21514,7 +21514,7 @@
}
},
{
- "id": 2049,
+ "id": 2050,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -21540,7 +21540,7 @@
}
},
{
- "id": 2046,
+ "id": 2047,
"name": "open",
"variant": "declaration",
"kind": 1024,
@@ -21569,7 +21569,7 @@
"groups": [
{
"title": "Properties",
- "children": [2047, 2048, 2049, 2046]
+ "children": [2048, 2049, 2050, 2047]
}
],
"sources": [
@@ -21583,7 +21583,7 @@
}
},
{
- "id": 2023,
+ "id": 2024,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -21601,7 +21601,7 @@
}
},
{
- "id": 2024,
+ "id": 2025,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -21622,7 +21622,7 @@
},
{
"type": "reference",
- "target": 2313,
+ "target": 2314,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
@@ -21630,7 +21630,7 @@
}
},
{
- "id": 2035,
+ "id": 2036,
"name": "vsn",
"variant": "declaration",
"kind": 1024,
@@ -21648,7 +21648,7 @@
}
},
{
- "id": 2061,
+ "id": 2062,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -21668,7 +21668,7 @@
}
},
{
- "id": 2063,
+ "id": 2064,
"name": "workerRef",
"variant": "declaration",
"kind": 1024,
@@ -21693,7 +21693,7 @@
}
},
{
- "id": 2062,
+ "id": 2063,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -21713,7 +21713,7 @@
}
},
{
- "id": 2096,
+ "id": 2097,
"name": "channel",
"variant": "declaration",
"kind": 2048,
@@ -21727,7 +21727,7 @@
],
"signatures": [
{
- "id": 2097,
+ "id": 2098,
"name": "channel",
"variant": "signature",
"kind": 4096,
@@ -21742,7 +21742,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "RealtimeChannel",
- "target": 1684
+ "target": 1685
},
{
"kind": "text",
@@ -21767,7 +21767,7 @@
],
"parameters": [
{
- "id": 2098,
+ "id": 2099,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -21778,7 +21778,7 @@
}
},
{
- "id": 2099,
+ "id": 2100,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -21787,7 +21787,7 @@
},
"type": {
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -21795,7 +21795,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -21804,7 +21804,7 @@
]
},
{
- "id": 2068,
+ "id": 2069,
"name": "connect",
"variant": "declaration",
"kind": 2048,
@@ -21818,7 +21818,7 @@
],
"signatures": [
{
- "id": 2069,
+ "id": 2070,
"name": "connect",
"variant": "signature",
"kind": 4096,
@@ -21846,7 +21846,7 @@
]
},
{
- "id": 2088,
+ "id": 2089,
"name": "connectionState",
"variant": "declaration",
"kind": 2048,
@@ -21860,7 +21860,7 @@
],
"signatures": [
{
- "id": 2089,
+ "id": 2090,
"name": "connectionState",
"variant": "signature",
"kind": 4096,
@@ -21893,7 +21893,7 @@
]
},
{
- "id": 2072,
+ "id": 2073,
"name": "disconnect",
"variant": "declaration",
"kind": 2048,
@@ -21907,7 +21907,7 @@
],
"signatures": [
{
- "id": 2073,
+ "id": 2074,
"name": "disconnect",
"variant": "signature",
"kind": 4096,
@@ -21929,7 +21929,7 @@
],
"parameters": [
{
- "id": 2074,
+ "id": 2075,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -21950,7 +21950,7 @@
}
},
{
- "id": 2075,
+ "id": 2076,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -21979,7 +21979,7 @@
]
},
{
- "id": 2070,
+ "id": 2071,
"name": "endpointURL",
"variant": "declaration",
"kind": 2048,
@@ -21993,7 +21993,7 @@
],
"signatures": [
{
- "id": 2071,
+ "id": 2072,
"name": "endpointURL",
"variant": "signature",
"kind": 4096,
@@ -22032,7 +22032,7 @@
]
},
{
- "id": 2115,
+ "id": 2116,
"name": "flushSendBuffer",
"variant": "declaration",
"kind": 2048,
@@ -22046,7 +22046,7 @@
],
"signatures": [
{
- "id": 2116,
+ "id": 2117,
"name": "flushSendBuffer",
"variant": "signature",
"kind": 4096,
@@ -22074,7 +22074,7 @@
]
},
{
- "id": 2076,
+ "id": 2077,
"name": "getChannels",
"variant": "declaration",
"kind": 2048,
@@ -22088,7 +22088,7 @@
],
"signatures": [
{
- "id": 2077,
+ "id": 2078,
"name": "getChannels",
"variant": "signature",
"kind": 4096,
@@ -22112,7 +22112,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -22122,7 +22122,7 @@
]
},
{
- "id": 2090,
+ "id": 2091,
"name": "isConnected",
"variant": "declaration",
"kind": 2048,
@@ -22136,7 +22136,7 @@
],
"signatures": [
{
- "id": 2091,
+ "id": 2092,
"name": "isConnected",
"variant": "signature",
"kind": 4096,
@@ -22172,7 +22172,7 @@
]
},
{
- "id": 2092,
+ "id": 2093,
"name": "isConnecting",
"variant": "declaration",
"kind": 2048,
@@ -22186,7 +22186,7 @@
],
"signatures": [
{
- "id": 2093,
+ "id": 2094,
"name": "isConnecting",
"variant": "signature",
"kind": 4096,
@@ -22222,7 +22222,7 @@
]
},
{
- "id": 2094,
+ "id": 2095,
"name": "isDisconnecting",
"variant": "declaration",
"kind": 2048,
@@ -22236,7 +22236,7 @@
],
"signatures": [
{
- "id": 2095,
+ "id": 2096,
"name": "isDisconnecting",
"variant": "signature",
"kind": 4096,
@@ -22272,7 +22272,7 @@
]
},
{
- "id": 2083,
+ "id": 2084,
"name": "log",
"variant": "declaration",
"kind": 2048,
@@ -22286,7 +22286,7 @@
],
"signatures": [
{
- "id": 2084,
+ "id": 2085,
"name": "log",
"variant": "signature",
"kind": 4096,
@@ -22316,7 +22316,7 @@
],
"parameters": [
{
- "id": 2085,
+ "id": 2086,
"name": "kind",
"variant": "param",
"kind": 32768,
@@ -22327,7 +22327,7 @@
}
},
{
- "id": 2086,
+ "id": 2087,
"name": "msg",
"variant": "param",
"kind": 32768,
@@ -22338,7 +22338,7 @@
}
},
{
- "id": 2087,
+ "id": 2088,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -22359,7 +22359,7 @@
]
},
{
- "id": 2108,
+ "id": 2109,
"name": "onHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -22373,7 +22373,7 @@
],
"signatures": [
{
- "id": 2109,
+ "id": 2110,
"name": "onHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -22395,7 +22395,7 @@
],
"parameters": [
{
- "id": 2110,
+ "id": 2111,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -22403,7 +22403,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2111,
+ "id": 2112,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -22417,7 +22417,7 @@
],
"signatures": [
{
- "id": 2112,
+ "id": 2113,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -22431,7 +22431,7 @@
],
"parameters": [
{
- "id": 2113,
+ "id": 2114,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -22447,7 +22447,7 @@
}
},
{
- "id": 2114,
+ "id": 2115,
"name": "latency",
"variant": "param",
"kind": 32768,
@@ -22478,7 +22478,7 @@
]
},
{
- "id": 2100,
+ "id": 2101,
"name": "push",
"variant": "declaration",
"kind": 2048,
@@ -22492,7 +22492,7 @@
],
"signatures": [
{
- "id": 2101,
+ "id": 2102,
"name": "push",
"variant": "signature",
"kind": 4096,
@@ -22514,14 +22514,14 @@
],
"parameters": [
{
- "id": 2102,
+ "id": 2103,
"name": "data",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2149,
+ "target": 2150,
"name": "RealtimeMessage",
"package": "@supabase/realtime-js"
}
@@ -22535,7 +22535,7 @@
]
},
{
- "id": 2081,
+ "id": 2082,
"name": "removeAllChannels",
"variant": "declaration",
"kind": 2048,
@@ -22549,7 +22549,7 @@
],
"signatures": [
{
- "id": 2082,
+ "id": 2083,
"name": "removeAllChannels",
"variant": "signature",
"kind": 4096,
@@ -22580,7 +22580,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 2226,
+ "target": 2227,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -22593,7 +22593,7 @@
]
},
{
- "id": 2078,
+ "id": 2079,
"name": "removeChannel",
"variant": "declaration",
"kind": 2048,
@@ -22607,7 +22607,7 @@
],
"signatures": [
{
- "id": 2079,
+ "id": 2080,
"name": "removeChannel",
"variant": "signature",
"kind": 4096,
@@ -22629,7 +22629,7 @@
],
"parameters": [
{
- "id": 2080,
+ "id": 2081,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -22644,7 +22644,7 @@
},
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -22660,7 +22660,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2226,
+ "target": 2227,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -22672,7 +22672,7 @@
]
},
{
- "id": 2106,
+ "id": 2107,
"name": "sendHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -22686,7 +22686,7 @@
],
"signatures": [
{
- "id": 2107,
+ "id": 2108,
"name": "sendHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -22725,7 +22725,7 @@
]
},
{
- "id": 2103,
+ "id": 2104,
"name": "setAuth",
"variant": "declaration",
"kind": 2048,
@@ -22739,7 +22739,7 @@
],
"signatures": [
{
- "id": 2104,
+ "id": 2105,
"name": "setAuth",
"variant": "signature",
"kind": 4096,
@@ -22796,7 +22796,7 @@
],
"parameters": [
{
- "id": 2105,
+ "id": 2106,
"name": "token",
"variant": "param",
"kind": 32768,
@@ -22848,21 +22848,21 @@
"groups": [
{
"title": "Constructors",
- "children": [2005]
+ "children": [2006]
},
{
"title": "Properties",
"children": [
- 2058, 2009, 2010, 2012, 2041, 2039, 2038, 2013, 2050, 2015, 2028, 2025, 2026, 2014,
- 2036, 2037, 2019, 2027, 2040, 2034, 2033, 2042, 2043, 2044, 2023, 2024, 2035, 2061,
- 2063, 2062
+ 2059, 2010, 2011, 2013, 2042, 2040, 2039, 2014, 2051, 2016, 2029, 2026, 2027, 2015,
+ 2037, 2038, 2020, 2028, 2041, 2035, 2034, 2043, 2044, 2045, 2024, 2025, 2036, 2062,
+ 2064, 2063
]
},
{
"title": "Methods",
"children": [
- 2096, 2068, 2088, 2072, 2070, 2115, 2076, 2090, 2092, 2094, 2083, 2108, 2100, 2081,
- 2078, 2106, 2103
+ 2097, 2069, 2089, 2073, 2071, 2116, 2077, 2091, 2093, 2095, 2084, 2109, 2101, 2082,
+ 2079, 2107, 2104
]
}
],
@@ -22875,14 +22875,14 @@
]
},
{
- "id": 1667,
+ "id": 1668,
"name": "RealtimePresence",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1668,
+ "id": 1669,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -22896,7 +22896,7 @@
],
"signatures": [
{
- "id": 1669,
+ "id": 1670,
"name": "RealtimePresence",
"variant": "signature",
"kind": 16384,
@@ -22929,7 +22929,7 @@
],
"parameters": [
{
- "id": 1670,
+ "id": 1671,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -22944,14 +22944,14 @@
},
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1671,
+ "id": 1672,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -22987,7 +22987,7 @@
],
"type": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -22996,7 +22996,7 @@
]
},
{
- "id": 1677,
+ "id": 1678,
"name": "caller",
"variant": "declaration",
"kind": 1024,
@@ -23011,14 +23011,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1678,
+ "id": 1679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1679,
+ "id": 1680,
"name": "onJoin",
"variant": "declaration",
"kind": 1024,
@@ -23041,7 +23041,7 @@
}
},
{
- "id": 1680,
+ "id": 1681,
"name": "onLeave",
"variant": "declaration",
"kind": 1024,
@@ -23064,7 +23064,7 @@
}
},
{
- "id": 1681,
+ "id": 1682,
"name": "onSync",
"variant": "declaration",
"kind": 1024,
@@ -23079,7 +23079,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1682,
+ "id": 1683,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -23093,7 +23093,7 @@
],
"signatures": [
{
- "id": 1683,
+ "id": 1684,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -23118,7 +23118,7 @@
"groups": [
{
"title": "Properties",
- "children": [1679, 1680, 1681]
+ "children": [1680, 1681, 1682]
}
],
"sources": [
@@ -23132,7 +23132,7 @@
}
},
{
- "id": 1672,
+ "id": 1673,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -23146,14 +23146,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1676,
+ "id": 1677,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -23171,7 +23171,7 @@
}
},
{
- "id": 1675,
+ "id": 1676,
"name": "joinRef",
"variant": "declaration",
"kind": 1024,
@@ -23198,7 +23198,7 @@
}
},
{
- "id": 1674,
+ "id": 1675,
"name": "pendingDiffs",
"variant": "declaration",
"kind": 1024,
@@ -23224,7 +23224,7 @@
}
},
{
- "id": 1673,
+ "id": 1674,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -23238,7 +23238,7 @@
],
"type": {
"type": "reference",
- "target": 2217,
+ "target": 2218,
"name": "RealtimePresenceState",
"package": "@supabase/realtime-js"
}
@@ -23247,11 +23247,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1668]
+ "children": [1669]
},
{
"title": "Properties",
- "children": [1677, 1672, 1676, 1675, 1674, 1673]
+ "children": [1678, 1673, 1677, 1676, 1675, 1674]
}
],
"sources": [
@@ -23288,7 +23288,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"signatures": [
@@ -23322,7 +23322,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"typeParameters": [
@@ -23370,7 +23370,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -23390,7 +23390,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -23740,7 +23740,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -23760,7 +23760,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -23841,7 +23841,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -23864,7 +23864,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -23884,7 +23884,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -23902,7 +23902,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -23952,7 +23952,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -23972,7 +23972,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -24008,7 +24008,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -24028,7 +24028,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -24204,7 +24204,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -24220,7 +24220,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"signatures": [
@@ -24235,7 +24235,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -24286,7 +24286,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L73"
}
],
"type": {
@@ -24312,7 +24312,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 81,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L81"
}
],
"type": {
@@ -24339,7 +24339,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L87"
}
],
"type": {
@@ -24361,7 +24361,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 86,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L86"
}
],
"type": {
@@ -24590,7 +24590,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 83,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L83"
}
],
"type": {
@@ -24616,7 +24616,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 90,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L90"
}
],
"type": {
@@ -24650,12 +24650,12 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L74"
}
],
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24674,7 +24674,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L80"
}
],
"type": {
@@ -24700,7 +24700,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L84"
}
],
"type": {
@@ -24758,7 +24758,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L78"
}
],
"type": {
@@ -24784,7 +24784,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 85,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L85"
}
],
"type": {
@@ -24805,7 +24805,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 82,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L82"
}
],
"type": {
@@ -24839,7 +24839,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 114,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L114"
}
],
"type": {
@@ -24868,7 +24868,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 113,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L113"
}
],
"type": {
@@ -24887,7 +24887,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L197"
}
],
"getSignature": {
@@ -24909,7 +24909,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L197"
}
],
"type": {
@@ -24934,7 +24934,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L311"
}
],
"signatures": [
@@ -24957,7 +24957,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L311"
}
],
"parameters": [
@@ -24996,7 +24996,7 @@
},
"type": {
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
},
@@ -25005,7 +25005,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -25044,19 +25044,19 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 205,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L205"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L209"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 217,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L217"
}
],
"signatures": [
@@ -25071,7 +25071,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 205,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L205"
}
],
"typeParameters": [
@@ -25172,7 +25172,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L209"
}
],
"typeParameters": [
@@ -25275,7 +25275,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L318"
}
],
"signatures": [
@@ -25298,14 +25298,14 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L318"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -25325,7 +25325,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 335,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L335"
}
],
"signatures": [
@@ -25348,7 +25348,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 335,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L335"
}
],
"type": {
@@ -25396,7 +25396,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L328"
}
],
"signatures": [
@@ -25419,7 +25419,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L328"
}
],
"parameters": [
@@ -25439,7 +25439,7 @@
},
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -25488,7 +25488,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L264"
}
],
"signatures": [
@@ -25511,7 +25511,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L264"
}
],
"typeParameters": [
@@ -25737,7 +25737,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 278,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L278"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L278"
}
],
"type": {
@@ -25787,7 +25787,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 277,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L277"
}
],
"type": {
@@ -25832,7 +25832,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 276,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L276"
}
],
"type": {
@@ -25852,7 +25852,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 275,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L275"
}
]
}
@@ -25961,7 +25961,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L229"
}
],
"signatures": [
@@ -25984,7 +25984,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L229"
}
],
"typeParameters": [
@@ -26132,7 +26132,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 37,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L37"
}
],
"typeParameters": [
@@ -26212,7 +26212,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -26232,7 +26232,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -26702,7 +26702,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -26722,7 +26722,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -26803,7 +26803,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -26826,7 +26826,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -26846,7 +26846,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -26864,7 +26864,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -26904,7 +26904,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -26924,7 +26924,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -26960,7 +26960,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -26980,7 +26980,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -27003,7 +27003,7 @@
]
},
{
- "id": 2247,
+ "id": 2248,
"name": "WebSocketFactory",
"variant": "declaration",
"kind": 128,
@@ -27018,7 +27018,7 @@
},
"children": [
{
- "id": 2255,
+ "id": 2256,
"name": "createWebSocket",
"variant": "declaration",
"kind": 2048,
@@ -27034,7 +27034,7 @@
],
"signatures": [
{
- "id": 2256,
+ "id": 2257,
"name": "createWebSocket",
"variant": "signature",
"kind": 4096,
@@ -27067,7 +27067,7 @@
],
"parameters": [
{
- "id": 2257,
+ "id": 2258,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -27092,7 +27092,7 @@
}
},
{
- "id": 2258,
+ "id": 2259,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -27119,7 +27119,7 @@
],
"type": {
"type": "reference",
- "target": 2263,
+ "target": 2264,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -27127,7 +27127,7 @@
]
},
{
- "id": 2249,
+ "id": 2250,
"name": "getWebSocketConstructor",
"variant": "declaration",
"kind": 2048,
@@ -27143,7 +27143,7 @@
],
"signatures": [
{
- "id": 2250,
+ "id": 2251,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 4096,
@@ -27177,7 +27177,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2251,
+ "id": 2252,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -27191,7 +27191,7 @@
],
"signatures": [
{
- "id": 2252,
+ "id": 2253,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 16384,
@@ -27205,7 +27205,7 @@
],
"parameters": [
{
- "id": 2253,
+ "id": 2254,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -27230,7 +27230,7 @@
}
},
{
- "id": 2254,
+ "id": 2255,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -27272,7 +27272,7 @@
]
},
{
- "id": 2259,
+ "id": 2260,
"name": "isWebSocketSupported",
"variant": "declaration",
"kind": 2048,
@@ -27288,7 +27288,7 @@
],
"signatures": [
{
- "id": 2260,
+ "id": 2261,
"name": "isWebSocketSupported",
"variant": "signature",
"kind": 4096,
@@ -27330,7 +27330,7 @@
"groups": [
{
"title": "Methods",
- "children": [2255, 2249, 2259]
+ "children": [2256, 2250, 2260]
}
],
"sources": [
@@ -27342,14 +27342,14 @@
]
},
{
- "id": 884,
+ "id": 885,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 886,
+ "id": 887,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -27383,7 +27383,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 413,
+ "line": 421,
"character": 4
}
],
@@ -27393,7 +27393,7 @@
}
},
{
- "id": 889,
+ "id": 890,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -27411,7 +27411,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 436,
+ "line": 444,
"character": 4
}
],
@@ -27421,7 +27421,7 @@
}
},
{
- "id": 894,
+ "id": 895,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -27440,7 +27440,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 370,
+ "line": 378,
"character": 4
}
],
@@ -27455,7 +27455,7 @@
}
},
{
- "id": 887,
+ "id": 888,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -27473,7 +27473,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 419,
+ "line": 427,
"character": 4
}
],
@@ -27483,7 +27483,7 @@
}
},
{
- "id": 892,
+ "id": 893,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -27517,7 +27517,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 458,
+ "line": 466,
"character": 4
}
],
@@ -27527,7 +27527,7 @@
}
},
{
- "id": 893,
+ "id": 894,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -27546,7 +27546,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 384,
+ "line": 392,
"character": 4
}
],
@@ -27561,7 +27561,7 @@
}
},
{
- "id": 895,
+ "id": 896,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -27580,7 +27580,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 378,
+ "line": 386,
"character": 4
}
],
@@ -27595,7 +27595,7 @@
}
},
{
- "id": 891,
+ "id": 892,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -27621,7 +27621,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 452,
+ "line": 460,
"character": 4
}
],
@@ -27631,7 +27631,7 @@
}
},
{
- "id": 896,
+ "id": 897,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -27650,7 +27650,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 374,
+ "line": 382,
"character": 4
}
],
@@ -27665,7 +27665,7 @@
}
},
{
- "id": 888,
+ "id": 889,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -27683,7 +27683,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 425,
+ "line": 433,
"character": 4
}
],
@@ -27693,7 +27693,7 @@
}
},
{
- "id": 890,
+ "id": 891,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -27743,7 +27743,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 444,
+ "line": 452,
"character": 4
}
],
@@ -27753,7 +27753,7 @@
}
},
{
- "id": 885,
+ "id": 886,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -27787,7 +27787,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 404,
+ "line": 412,
"character": 4
}
],
@@ -27800,13 +27800,13 @@
"groups": [
{
"title": "Properties",
- "children": [886, 889, 894, 887, 892, 893, 895, 891, 896, 888, 890, 885]
+ "children": [887, 890, 895, 888, 893, 894, 896, 892, 897, 889, 891, 886]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 393,
+ "line": 401,
"character": 17
}
],
@@ -27820,7 +27820,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 878,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -27835,7 +27835,7 @@
]
},
{
- "id": 842,
+ "id": 843,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -27855,7 +27855,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1268
+ "target": 1269
},
{
"kind": "text",
@@ -27867,7 +27867,7 @@
},
"children": [
{
- "id": 843,
+ "id": 844,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -27883,19 +27883,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 271,
+ "line": 279,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 844,
+ "id": 845,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -27911,7 +27911,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 276,
+ "line": 284,
"character": 4
}
],
@@ -27924,19 +27924,19 @@
"groups": [
{
"title": "Properties",
- "children": [843, 844]
+ "children": [844, 845]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 269,
+ "line": 277,
"character": 17
}
]
},
{
- "id": 1463,
+ "id": 1464,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -27951,7 +27951,7 @@
},
"children": [
{
- "id": 1467,
+ "id": 1468,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -27959,13 +27959,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1563,
+ "line": 1571,
"character": 4
}
],
"signatures": [
{
- "id": 1468,
+ "id": 1469,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -27992,13 +27992,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1563,
+ "line": 1571,
"character": 4
}
],
"parameters": [
{
- "id": 1469,
+ "id": 1470,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -28017,7 +28017,7 @@
}
},
{
- "id": 1470,
+ "id": 1471,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -28035,14 +28035,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1471,
+ "id": 1472,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1472,
+ "id": 1473,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -28060,7 +28060,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1564,
+ "line": 1572,
"character": 8
}
],
@@ -28073,13 +28073,13 @@
"groups": [
{
"title": "Properties",
- "children": [1472]
+ "children": [1473]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1563,
+ "line": 1571,
"character": 60
}
]
@@ -28096,7 +28096,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1454,
+ "target": 1455,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -28108,7 +28108,7 @@
]
},
{
- "id": 1473,
+ "id": 1474,
"name": "denyAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -28116,13 +28116,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1578,
+ "line": 1586,
"character": 4
}
],
"signatures": [
{
- "id": 1474,
+ "id": 1475,
"name": "denyAuthorization",
"variant": "signature",
"kind": 4096,
@@ -28149,13 +28149,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1578,
+ "line": 1586,
"character": 4
}
],
"parameters": [
{
- "id": 1475,
+ "id": 1476,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -28174,7 +28174,7 @@
}
},
{
- "id": 1476,
+ "id": 1477,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -28192,14 +28192,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1477,
+ "id": 1478,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1478,
+ "id": 1479,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -28217,7 +28217,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1579,
+ "line": 1587,
"character": 8
}
],
@@ -28230,13 +28230,13 @@
"groups": [
{
"title": "Properties",
- "children": [1478]
+ "children": [1479]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1578,
+ "line": 1586,
"character": 57
}
]
@@ -28253,7 +28253,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1454,
+ "target": 1455,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -28265,7 +28265,7 @@
]
},
{
- "id": 1464,
+ "id": 1465,
"name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
@@ -28273,13 +28273,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1550,
+ "line": 1558,
"character": 4
}
],
"signatures": [
{
- "id": 1465,
+ "id": 1466,
"name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
@@ -28326,13 +28326,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1550,
+ "line": 1558,
"character": 4
}
],
"parameters": [
{
- "id": 1466,
+ "id": 1467,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -28360,7 +28360,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1453,
+ "target": 1454,
"name": "AuthOAuthAuthorizationDetailsResponse",
"package": "@supabase/auth-js"
}
@@ -28372,7 +28372,7 @@
]
},
{
- "id": 1479,
+ "id": 1480,
"name": "listGrants",
"variant": "declaration",
"kind": 2048,
@@ -28380,13 +28380,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1587,
+ "line": 1595,
"character": 4
}
],
"signatures": [
{
- "id": 1480,
+ "id": 1481,
"name": "listGrants",
"variant": "signature",
"kind": 4096,
@@ -28413,7 +28413,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1587,
+ "line": 1595,
"character": 4
}
],
@@ -28426,7 +28426,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1460,
+ "target": 1461,
"name": "AuthOAuthGrantsResponse",
"package": "@supabase/auth-js"
}
@@ -28438,7 +28438,7 @@
]
},
{
- "id": 1481,
+ "id": 1482,
"name": "revokeGrant",
"variant": "declaration",
"kind": 2048,
@@ -28446,13 +28446,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1599,
+ "line": 1607,
"character": 4
}
],
"signatures": [
{
- "id": 1482,
+ "id": 1483,
"name": "revokeGrant",
"variant": "signature",
"kind": 4096,
@@ -28479,13 +28479,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1599,
+ "line": 1607,
"character": 4
}
],
"parameters": [
{
- "id": 1483,
+ "id": 1484,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -28501,14 +28501,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1484,
+ "id": 1485,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1485,
+ "id": 1486,
"name": "clientId",
"variant": "declaration",
"kind": 1024,
@@ -28524,7 +28524,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1600,
+ "line": 1608,
"character": 8
}
],
@@ -28537,13 +28537,13 @@
"groups": [
{
"title": "Properties",
- "children": [1485]
+ "children": [1486]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1599,
+ "line": 1607,
"character": 25
}
]
@@ -28560,7 +28560,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1461,
+ "target": 1462,
"name": "AuthOAuthRevokeGrantResponse",
"package": "@supabase/auth-js"
}
@@ -28575,13 +28575,13 @@
"groups": [
{
"title": "Methods",
- "children": [1467, 1473, 1464, 1479, 1481]
+ "children": [1468, 1474, 1465, 1480, 1482]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1528,
+ "line": 1536,
"character": 17
}
]
@@ -28610,7 +28610,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 236,
+ "line": 244,
"character": 4
}
],
@@ -28638,7 +28638,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 248,
+ "line": 256,
"character": 4
}
],
@@ -28664,7 +28664,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 244,
+ "line": 252,
"character": 4
}
],
@@ -28692,7 +28692,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 232,
+ "line": 240,
"character": 4
}
],
@@ -28729,7 +28729,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 227,
+ "line": 235,
"character": 4
}
],
@@ -28764,7 +28764,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 240,
+ "line": 248,
"character": 4
}
],
@@ -28782,7 +28782,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 249,
+ "line": 257,
"character": 4
}
],
@@ -28808,7 +28808,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 253,
+ "line": 261,
"character": 4
}
],
@@ -28829,7 +28829,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 223,
+ "line": 231,
"character": 17
}
]
@@ -28852,7 +28852,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 349,
+ "line": 357,
"character": 4
}
],
@@ -28870,13 +28870,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 340,
+ "line": 348,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
@@ -28890,7 +28890,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 342,
+ "line": 350,
"character": 4
}
],
@@ -28910,7 +28910,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 364,
+ "line": 372,
"character": 4
}
],
@@ -28930,7 +28930,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 343,
+ "line": 351,
"character": 4
}
],
@@ -28950,7 +28950,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 353,
+ "line": 361,
"character": 4
}
],
@@ -28968,7 +28968,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 352,
+ "line": 360,
"character": 4
}
],
@@ -28988,7 +28988,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 363,
+ "line": 371,
"character": 4
}
],
@@ -29008,7 +29008,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 350,
+ "line": 358,
"character": 4
}
],
@@ -29028,7 +29028,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 345,
+ "line": 353,
"character": 4
}
],
@@ -29048,7 +29048,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 354,
+ "line": 362,
"character": 4
}
],
@@ -29068,7 +29068,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 362,
+ "line": 370,
"character": 4
}
],
@@ -29079,7 +29079,7 @@
"types": [
{
"type": "reference",
- "target": 858,
+ "target": 859,
"typeArguments": [
{
"type": "union",
@@ -29108,7 +29108,7 @@
},
{
"type": "reference",
- "target": 858,
+ "target": 859,
"typeArguments": [
{
"type": "union",
@@ -29148,7 +29148,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 339,
+ "line": 347,
"character": 4
}
],
@@ -29168,7 +29168,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 359,
+ "line": 367,
"character": 4
}
],
@@ -29176,7 +29176,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 845,
+ "target": 846,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -29193,7 +29193,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 348,
+ "line": 356,
"character": 4
}
],
@@ -29213,7 +29213,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 360,
+ "line": 368,
"character": 4
}
],
@@ -29233,7 +29233,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 361,
+ "line": 369,
"character": 4
}
],
@@ -29253,7 +29253,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 356,
+ "line": 364,
"character": 4
}
],
@@ -29273,7 +29273,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 346,
+ "line": 354,
"character": 4
}
],
@@ -29293,7 +29293,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 347,
+ "line": 355,
"character": 4
}
],
@@ -29313,7 +29313,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 351,
+ "line": 359,
"character": 4
}
],
@@ -29333,7 +29333,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 355,
+ "line": 363,
"character": 4
}
],
@@ -29353,7 +29353,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 344,
+ "line": 352,
"character": 4
}
],
@@ -29373,7 +29373,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 357,
+ "line": 365,
"character": 4
}
],
@@ -29393,7 +29393,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 358,
+ "line": 366,
"character": 4
}
],
@@ -29411,13 +29411,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 341,
+ "line": 349,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 874,
+ "target": 875,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -29435,20 +29435,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 338,
+ "line": 346,
"character": 17
}
]
},
{
- "id": 1091,
+ "id": 1092,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1092,
+ "id": 1093,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29482,7 +29482,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 757,
+ "line": 765,
"character": 4
}
],
@@ -29492,7 +29492,7 @@
}
},
{
- "id": 1093,
+ "id": 1094,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -29510,7 +29510,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 759,
+ "line": 767,
"character": 4
}
],
@@ -29523,19 +29523,19 @@
"groups": [
{
"title": "Properties",
- "children": [1092, 1093]
+ "children": [1093, 1094]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 751,
+ "line": 759,
"character": 17
}
]
},
{
- "id": 1285,
+ "id": 1286,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -29556,7 +29556,7 @@
},
"children": [
{
- "id": 1289,
+ "id": 1290,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -29564,13 +29564,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1096,
+ "line": 1104,
"character": 4
}
],
"signatures": [
{
- "id": 1290,
+ "id": 1291,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -29590,7 +29590,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1257
+ "target": 1258
}
]
},
@@ -29603,20 +29603,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1096,
+ "line": 1104,
"character": 4
}
],
"parameters": [
{
- "id": 1291,
+ "id": 1292,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1275,
+ "target": 1276,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -29631,7 +29631,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1272,
+ "target": 1273,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -29643,7 +29643,7 @@
]
},
{
- "id": 1286,
+ "id": 1287,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -29651,13 +29651,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1087,
+ "line": 1095,
"character": 4
}
],
"signatures": [
{
- "id": 1287,
+ "id": 1288,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -29673,20 +29673,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1087,
+ "line": 1095,
"character": 4
}
],
"parameters": [
{
- "id": 1288,
+ "id": 1289,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1282,
+ "target": 1283,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -29701,7 +29701,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1279,
+ "target": 1280,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -29716,19 +29716,19 @@
"groups": [
{
"title": "Methods",
- "children": [1289, 1286]
+ "children": [1290, 1287]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1082,
+ "line": 1090,
"character": 17
}
]
},
{
- "id": 1411,
+ "id": 1412,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -29743,7 +29743,7 @@
},
"children": [
{
- "id": 1415,
+ "id": 1416,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -29751,13 +29751,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1380,
+ "line": 1388,
"character": 4
}
],
"signatures": [
{
- "id": 1416,
+ "id": 1417,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -29781,20 +29781,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1380,
+ "line": 1388,
"character": 4
}
],
"parameters": [
{
- "id": 1417,
+ "id": 1418,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1383,
+ "target": 1384,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -29809,7 +29809,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -29821,7 +29821,7 @@
]
},
{
- "id": 1425,
+ "id": 1426,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -29829,13 +29829,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1401,
+ "line": 1409,
"character": 4
}
],
"signatures": [
{
- "id": 1426,
+ "id": 1427,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -29859,13 +29859,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1401,
+ "line": 1409,
"character": 4
}
],
"parameters": [
{
- "id": 1427,
+ "id": 1428,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -29886,14 +29886,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1428,
+ "id": 1429,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1429,
+ "id": 1430,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29901,7 +29901,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1402,
+ "line": 1410,
"character": 8
}
],
@@ -29911,7 +29911,7 @@
}
},
{
- "id": 1430,
+ "id": 1431,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29919,7 +29919,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1403,
+ "line": 1411,
"character": 8
}
],
@@ -29932,7 +29932,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -29943,13 +29943,13 @@
"groups": [
{
"title": "Properties",
- "children": [1429, 1430]
+ "children": [1430, 1431]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1401,
+ "line": 1409,
"character": 44
}
]
@@ -29963,7 +29963,7 @@
]
},
{
- "id": 1418,
+ "id": 1419,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -29971,13 +29971,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1387,
+ "line": 1395,
"character": 4
}
],
"signatures": [
{
- "id": 1419,
+ "id": 1420,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -30001,13 +30001,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1387,
+ "line": 1395,
"character": 4
}
],
"parameters": [
{
- "id": 1420,
+ "id": 1421,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -30027,7 +30027,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -30039,7 +30039,7 @@
]
},
{
- "id": 1412,
+ "id": 1413,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -30047,13 +30047,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1373,
+ "line": 1381,
"character": 4
}
],
"signatures": [
{
- "id": 1413,
+ "id": 1414,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -30077,13 +30077,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1373,
+ "line": 1381,
"character": 4
}
],
"parameters": [
{
- "id": 1414,
+ "id": 1415,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30092,7 +30092,7 @@
},
"type": {
"type": "reference",
- "target": 1306,
+ "target": 1307,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -30107,7 +30107,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1399,
+ "target": 1400,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -30119,7 +30119,7 @@
]
},
{
- "id": 1431,
+ "id": 1432,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -30127,13 +30127,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1411,
+ "line": 1419,
"character": 4
}
],
"signatures": [
{
- "id": 1432,
+ "id": 1433,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -30157,13 +30157,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1411,
+ "line": 1419,
"character": 4
}
],
"parameters": [
{
- "id": 1433,
+ "id": 1434,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -30183,7 +30183,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -30195,7 +30195,7 @@
]
},
{
- "id": 1421,
+ "id": 1422,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -30203,13 +30203,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1394,
+ "line": 1402,
"character": 4
}
],
"signatures": [
{
- "id": 1422,
+ "id": 1423,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -30233,13 +30233,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1394,
+ "line": 1402,
"character": 4
}
],
"parameters": [
{
- "id": 1423,
+ "id": 1424,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -30250,14 +30250,14 @@
}
},
{
- "id": 1424,
+ "id": 1425,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1391,
+ "target": 1392,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -30272,7 +30272,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -30287,19 +30287,19 @@
"groups": [
{
"title": "Methods",
- "children": [1415, 1425, 1418, 1412, 1431, 1421]
+ "children": [1416, 1426, 1419, 1413, 1432, 1422]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1366,
+ "line": 1374,
"character": 17
}
]
},
{
- "id": 1154,
+ "id": 1155,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -30314,7 +30314,7 @@
},
"children": [
{
- "id": 1271,
+ "id": 1272,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -30322,7 +30322,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1045,
+ "line": 1053,
"character": 4
}
],
@@ -30337,7 +30337,7 @@
}
},
{
- "id": 1175,
+ "id": 1176,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -30345,28 +30345,28 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 998,
+ "line": 1006,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 999,
+ "line": 1007,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1000,
+ "line": 1008,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1001,
+ "line": 1009,
"character": 4
}
],
"signatures": [
{
- "id": 1176,
+ "id": 1177,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -30382,13 +30382,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 998,
+ "line": 1006,
"character": 4
}
],
"parameters": [
{
- "id": 1177,
+ "id": 1178,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30396,14 +30396,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1178,
+ "id": 1179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1179,
+ "id": 1180,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -30419,7 +30419,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 836,
+ "line": 844,
"character": 4
}
],
@@ -30432,13 +30432,13 @@
"groups": [
{
"title": "Properties",
- "children": [1179]
+ "children": [1180]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30459,14 +30459,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1180,
+ "id": 1181,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1181,
+ "id": 1182,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30474,7 +30474,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 153,
+ "line": 161,
"character": 4
}
],
@@ -30484,7 +30484,7 @@
}
},
{
- "id": 1182,
+ "id": 1183,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30492,13 +30492,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 154,
+ "line": 162,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30507,13 +30507,13 @@
"groups": [
{
"title": "Properties",
- "children": [1181, 1182]
+ "children": [1182, 1183]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30522,14 +30522,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1183,
+ "id": 1184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1184,
+ "id": 1185,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30537,21 +30537,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 150,
+ "line": 158,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1185,
+ "id": 1186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1188,
+ "id": 1189,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -30567,7 +30567,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 898,
+ "line": 906,
"character": 4
}
],
@@ -30577,7 +30577,7 @@
}
},
{
- "id": 1186,
+ "id": 1187,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -30593,7 +30593,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 894,
+ "line": 902,
"character": 4
}
],
@@ -30603,7 +30603,7 @@
}
},
{
- "id": 1187,
+ "id": 1188,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30619,7 +30619,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 896,
+ "line": 904,
"character": 4
}
],
@@ -30632,13 +30632,13 @@
"groups": [
{
"title": "Properties",
- "children": [1188, 1186, 1187]
+ "children": [1189, 1187, 1188]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30646,7 +30646,7 @@
}
},
{
- "id": 1189,
+ "id": 1190,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30654,7 +30654,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 151,
+ "line": 159,
"character": 4
}
],
@@ -30667,13 +30667,13 @@
"groups": [
{
"title": "Properties",
- "children": [1184, 1189]
+ "children": [1185, 1190]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30687,7 +30687,7 @@
}
},
{
- "id": 1190,
+ "id": 1191,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -30695,13 +30695,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 999,
+ "line": 1007,
"character": 4
}
],
"parameters": [
{
- "id": 1191,
+ "id": 1192,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30709,14 +30709,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1192,
+ "id": 1193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1194,
+ "id": 1195,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -30732,7 +30732,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 843,
+ "line": 851,
"character": 4
}
],
@@ -30751,7 +30751,7 @@
}
},
{
- "id": 1193,
+ "id": 1194,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -30767,7 +30767,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 836,
+ "line": 844,
"character": 4
}
],
@@ -30780,13 +30780,13 @@
"groups": [
{
"title": "Properties",
- "children": [1194, 1193]
+ "children": [1195, 1194]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30807,14 +30807,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1195,
+ "id": 1196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1196,
+ "id": 1197,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30822,7 +30822,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 153,
+ "line": 161,
"character": 4
}
],
@@ -30832,7 +30832,7 @@
}
},
{
- "id": 1197,
+ "id": 1198,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30840,13 +30840,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 154,
+ "line": 162,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30855,13 +30855,13 @@
"groups": [
{
"title": "Properties",
- "children": [1196, 1197]
+ "children": [1197, 1198]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30870,14 +30870,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1198,
+ "id": 1199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1199,
+ "id": 1200,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30885,21 +30885,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 150,
+ "line": 158,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1200,
+ "id": 1201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1203,
+ "id": 1204,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -30915,7 +30915,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 898,
+ "line": 906,
"character": 4
}
],
@@ -30925,7 +30925,7 @@
}
},
{
- "id": 1201,
+ "id": 1202,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -30941,7 +30941,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 894,
+ "line": 902,
"character": 4
}
],
@@ -30951,7 +30951,7 @@
}
},
{
- "id": 1202,
+ "id": 1203,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30967,7 +30967,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 896,
+ "line": 904,
"character": 4
}
],
@@ -30980,13 +30980,13 @@
"groups": [
{
"title": "Properties",
- "children": [1203, 1201, 1202]
+ "children": [1204, 1202, 1203]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30994,7 +30994,7 @@
}
},
{
- "id": 1204,
+ "id": 1205,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31002,7 +31002,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 151,
+ "line": 159,
"character": 4
}
],
@@ -31015,13 +31015,13 @@
"groups": [
{
"title": "Properties",
- "children": [1199, 1204]
+ "children": [1200, 1205]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31035,7 +31035,7 @@
}
},
{
- "id": 1205,
+ "id": 1206,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -31043,13 +31043,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1000,
+ "line": 1008,
"character": 4
}
],
"parameters": [
{
- "id": 1206,
+ "id": 1207,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31057,14 +31057,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1207,
+ "id": 1208,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1208,
+ "id": 1209,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31080,7 +31080,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 836,
+ "line": 844,
"character": 4
}
],
@@ -31090,7 +31090,7 @@
}
},
{
- "id": 1209,
+ "id": 1210,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -31098,21 +31098,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 848,
+ "line": 856,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1210,
+ "id": 1211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1211,
+ "id": 1212,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -31128,7 +31128,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 850,
+ "line": 858,
"character": 8
}
],
@@ -31138,7 +31138,7 @@
}
},
{
- "id": 1212,
+ "id": 1213,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -31156,7 +31156,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 852,
+ "line": 860,
"character": 8
}
],
@@ -31172,13 +31172,13 @@
"groups": [
{
"title": "Properties",
- "children": [1211, 1212]
+ "children": [1212, 1213]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 848,
+ "line": 856,
"character": 14
}
]
@@ -31189,13 +31189,13 @@
"groups": [
{
"title": "Properties",
- "children": [1208, 1209]
+ "children": [1209, 1210]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31216,14 +31216,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1213,
+ "id": 1214,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1214,
+ "id": 1215,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -31231,7 +31231,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 153,
+ "line": 161,
"character": 4
}
],
@@ -31241,7 +31241,7 @@
}
},
{
- "id": 1215,
+ "id": 1216,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31249,13 +31249,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 154,
+ "line": 162,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -31264,13 +31264,13 @@
"groups": [
{
"title": "Properties",
- "children": [1214, 1215]
+ "children": [1215, 1216]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31279,14 +31279,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1216,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1217,
+ "id": 1218,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -31294,21 +31294,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 150,
+ "line": 158,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1218,
+ "id": 1219,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1221,
+ "id": 1222,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -31324,7 +31324,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 898,
+ "line": 906,
"character": 4
}
],
@@ -31334,7 +31334,7 @@
}
},
{
- "id": 1219,
+ "id": 1220,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -31350,7 +31350,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 894,
+ "line": 902,
"character": 4
}
],
@@ -31360,7 +31360,7 @@
}
},
{
- "id": 1220,
+ "id": 1221,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -31376,7 +31376,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 896,
+ "line": 904,
"character": 4
}
],
@@ -31386,7 +31386,7 @@
}
},
{
- "id": 1222,
+ "id": 1223,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -31394,7 +31394,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 905,
+ "line": 913,
"character": 4
}
],
@@ -31404,14 +31404,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1223,
+ "id": 1224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1225,
+ "id": 1226,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -31419,21 +31419,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 907,
+ "line": 915,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1226,
+ "id": 1227,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1227,
+ "id": 1228,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -31441,7 +31441,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 908,
+ "line": 916,
"character": 12
}
],
@@ -31459,13 +31459,13 @@
"groups": [
{
"title": "Properties",
- "children": [1227]
+ "children": [1228]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 907,
+ "line": 915,
"character": 28
}
]
@@ -31473,7 +31473,7 @@
}
},
{
- "id": 1224,
+ "id": 1225,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -31481,7 +31481,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 906,
+ "line": 914,
"character": 8
}
],
@@ -31494,13 +31494,13 @@
"groups": [
{
"title": "Properties",
- "children": [1225, 1224]
+ "children": [1226, 1225]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 905,
+ "line": 913,
"character": 14
}
]
@@ -31509,14 +31509,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1228,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1230,
+ "id": 1231,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -31524,21 +31524,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 912,
+ "line": 920,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1231,
+ "id": 1232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1232,
+ "id": 1233,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -31546,7 +31546,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 913,
+ "line": 921,
"character": 12
}
],
@@ -31564,13 +31564,13 @@
"groups": [
{
"title": "Properties",
- "children": [1232]
+ "children": [1233]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 912,
+ "line": 920,
"character": 28
}
]
@@ -31578,7 +31578,7 @@
}
},
{
- "id": 1229,
+ "id": 1230,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -31586,7 +31586,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 911,
+ "line": 919,
"character": 8
}
],
@@ -31599,13 +31599,13 @@
"groups": [
{
"title": "Properties",
- "children": [1230, 1229]
+ "children": [1231, 1230]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 910,
+ "line": 918,
"character": 8
}
]
@@ -31618,13 +31618,13 @@
"groups": [
{
"title": "Properties",
- "children": [1221, 1219, 1220, 1222]
+ "children": [1222, 1220, 1221, 1223]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31632,7 +31632,7 @@
}
},
{
- "id": 1233,
+ "id": 1234,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31640,7 +31640,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 151,
+ "line": 159,
"character": 4
}
],
@@ -31653,13 +31653,13 @@
"groups": [
{
"title": "Properties",
- "children": [1217, 1233]
+ "children": [1218, 1234]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31673,7 +31673,7 @@
}
},
{
- "id": 1234,
+ "id": 1235,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -31681,20 +31681,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1001,
+ "line": 1009,
"character": 4
}
],
"parameters": [
{
- "id": 1235,
+ "id": 1236,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1124,
+ "target": 1125,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -31709,7 +31709,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1143,
+ "target": 1144,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -31721,7 +31721,7 @@
]
},
{
- "id": 1260,
+ "id": 1261,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -31729,13 +31729,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1019,
+ "line": 1027,
"character": 4
}
],
"signatures": [
{
- "id": 1261,
+ "id": 1262,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -31751,13 +31751,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1019,
+ "line": 1027,
"character": 4
}
],
"parameters": [
{
- "id": 1262,
+ "id": 1263,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31765,14 +31765,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1263,
+ "id": 1264,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1265,
+ "id": 1266,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -31788,7 +31788,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 801,
+ "line": 809,
"character": 4
}
],
@@ -31798,7 +31798,7 @@
}
},
{
- "id": 1264,
+ "id": 1265,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31814,7 +31814,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -31827,13 +31827,13 @@
"groups": [
{
"title": "Properties",
- "children": [1265, 1264]
+ "children": [1266, 1265]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31850,7 +31850,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31862,7 +31862,7 @@
]
},
{
- "id": 1155,
+ "id": 1156,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -31870,28 +31870,28 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 990,
+ "line": 998,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 991,
+ "line": 999,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 992,
+ "line": 1000,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 993,
+ "line": 1001,
"character": 4
}
],
"signatures": [
{
- "id": 1156,
+ "id": 1157,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -31923,13 +31923,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 990,
+ "line": 998,
"character": 4
}
],
"parameters": [
{
- "id": 1157,
+ "id": 1158,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31937,14 +31937,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1158,
+ "id": 1159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1159,
+ "id": 1160,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -31960,7 +31960,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1144,
+ "line": 1152,
"character": 4
}
],
@@ -31970,7 +31970,7 @@
}
},
{
- "id": 1160,
+ "id": 1161,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -31988,7 +31988,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1146,
+ "line": 1154,
"character": 4
}
],
@@ -31998,7 +31998,7 @@
}
},
{
- "id": 1161,
+ "id": 1162,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -32016,7 +32016,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1150,
+ "line": 1158,
"character": 4
}
],
@@ -32029,13 +32029,13 @@
"groups": [
{
"title": "Properties",
- "children": [1159, 1160, 1161]
+ "children": [1160, 1161, 1162]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32052,7 +32052,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1316,
+ "target": 1317,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -32062,7 +32062,7 @@
}
},
{
- "id": 1162,
+ "id": 1163,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -32070,13 +32070,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 991,
+ "line": 999,
"character": 4
}
],
"parameters": [
{
- "id": 1163,
+ "id": 1164,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32084,14 +32084,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1164,
+ "id": 1165,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1165,
+ "id": 1166,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -32107,7 +32107,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1144,
+ "line": 1152,
"character": 4
}
],
@@ -32117,7 +32117,7 @@
}
},
{
- "id": 1166,
+ "id": 1167,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -32135,7 +32135,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1146,
+ "line": 1154,
"character": 4
}
],
@@ -32145,7 +32145,7 @@
}
},
{
- "id": 1167,
+ "id": 1168,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -32161,7 +32161,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1155,
+ "line": 1163,
"character": 4
}
],
@@ -32174,13 +32174,13 @@
"groups": [
{
"title": "Properties",
- "children": [1165, 1166, 1167]
+ "children": [1166, 1167, 1168]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32197,7 +32197,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1317,
+ "target": 1318,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -32207,7 +32207,7 @@
}
},
{
- "id": 1168,
+ "id": 1169,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -32215,13 +32215,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 992,
+ "line": 1000,
"character": 4
}
],
"parameters": [
{
- "id": 1169,
+ "id": 1170,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32229,14 +32229,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1170,
+ "id": 1171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1171,
+ "id": 1172,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -32252,7 +32252,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1144,
+ "line": 1152,
"character": 4
}
],
@@ -32262,7 +32262,7 @@
}
},
{
- "id": 1172,
+ "id": 1173,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -32280,7 +32280,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1146,
+ "line": 1154,
"character": 4
}
],
@@ -32293,13 +32293,13 @@
"groups": [
{
"title": "Properties",
- "children": [1171, 1172]
+ "children": [1172, 1173]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32316,7 +32316,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1318,
+ "target": 1319,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -32326,7 +32326,7 @@
}
},
{
- "id": 1173,
+ "id": 1174,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -32334,20 +32334,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 993,
+ "line": 1001,
"character": 4
}
],
"parameters": [
{
- "id": 1174,
+ "id": 1175,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1107,
+ "target": 1108,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -32362,7 +32362,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1134,
+ "target": 1135,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -32374,7 +32374,7 @@
]
},
{
- "id": 1268,
+ "id": 1269,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -32382,13 +32382,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1044,
+ "line": 1052,
"character": 4
}
],
"signatures": [
{
- "id": 1269,
+ "id": 1270,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -32428,13 +32428,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1044,
+ "line": 1052,
"character": 4
}
],
"parameters": [
{
- "id": 1270,
+ "id": 1271,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -32464,7 +32464,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1149,
+ "target": 1150,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -32476,7 +32476,7 @@
]
},
{
- "id": 1266,
+ "id": 1267,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -32484,13 +32484,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1028,
+ "line": 1036,
"character": 4
}
],
"signatures": [
{
- "id": 1267,
+ "id": 1268,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -32514,7 +32514,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1155
+ "target": 1156
},
{
"kind": "text",
@@ -32528,7 +32528,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1268
+ "target": 1269
},
{
"kind": "text",
@@ -32555,7 +32555,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1028,
+ "line": 1036,
"character": 4
}
],
@@ -32568,7 +32568,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1144,
+ "target": 1145,
"typeArguments": [
{
"type": "typeOperator",
@@ -32603,7 +32603,7 @@
]
},
{
- "id": 1257,
+ "id": 1258,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -32611,13 +32611,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1014,
+ "line": 1022,
"character": 4
}
],
"signatures": [
{
- "id": 1258,
+ "id": 1259,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -32649,20 +32649,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1014,
+ "line": 1022,
"character": 4
}
],
"parameters": [
{
- "id": 1259,
+ "id": 1260,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1108,
+ "target": 1109,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -32677,7 +32677,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1135,
+ "target": 1136,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -32689,7 +32689,7 @@
]
},
{
- "id": 1236,
+ "id": 1237,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -32697,28 +32697,28 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1006,
+ "line": 1014,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1007,
+ "line": 1015,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1008,
+ "line": 1016,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1009,
+ "line": 1017,
"character": 4
}
],
"signatures": [
{
- "id": 1237,
+ "id": 1238,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -32734,13 +32734,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1006,
+ "line": 1014,
"character": 4
}
],
"parameters": [
{
- "id": 1238,
+ "id": 1239,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32748,14 +32748,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1241,
+ "id": 1242,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -32771,7 +32771,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 797,
+ "line": 805,
"character": 4
}
],
@@ -32781,7 +32781,7 @@
}
},
{
- "id": 1242,
+ "id": 1243,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -32797,7 +32797,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 801,
+ "line": 809,
"character": 4
}
],
@@ -32807,7 +32807,7 @@
}
},
{
- "id": 1240,
+ "id": 1241,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -32823,7 +32823,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -32836,13 +32836,13 @@
"groups": [
{
"title": "Properties",
- "children": [1241, 1242, 1240]
+ "children": [1242, 1243, 1241]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32859,7 +32859,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -32869,7 +32869,7 @@
}
},
{
- "id": 1243,
+ "id": 1244,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -32877,13 +32877,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1007,
+ "line": 1015,
"character": 4
}
],
"parameters": [
{
- "id": 1244,
+ "id": 1245,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32891,14 +32891,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1245,
+ "id": 1246,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1247,
+ "id": 1248,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -32914,7 +32914,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 797,
+ "line": 805,
"character": 4
}
],
@@ -32924,7 +32924,7 @@
}
},
{
- "id": 1248,
+ "id": 1249,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -32940,7 +32940,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 801,
+ "line": 809,
"character": 4
}
],
@@ -32950,7 +32950,7 @@
}
},
{
- "id": 1246,
+ "id": 1247,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -32966,7 +32966,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -32979,13 +32979,13 @@
"groups": [
{
"title": "Properties",
- "children": [1247, 1248, 1246]
+ "children": [1248, 1249, 1247]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -33002,7 +33002,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -33012,7 +33012,7 @@
}
},
{
- "id": 1249,
+ "id": 1250,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -33020,13 +33020,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1008,
+ "line": 1016,
"character": 4
}
],
"parameters": [
{
- "id": 1250,
+ "id": 1251,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -33034,14 +33034,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1251,
+ "id": 1252,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1253,
+ "id": 1254,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -33057,7 +33057,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 797,
+ "line": 805,
"character": 4
}
],
@@ -33067,7 +33067,7 @@
}
},
{
- "id": 1252,
+ "id": 1253,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -33083,7 +33083,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -33093,7 +33093,7 @@
}
},
{
- "id": 1254,
+ "id": 1255,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -33101,7 +33101,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 824,
+ "line": 832,
"character": 4
}
],
@@ -33148,13 +33148,13 @@
"groups": [
{
"title": "Properties",
- "children": [1253, 1252, 1254]
+ "children": [1254, 1253, 1255]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -33171,7 +33171,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -33181,7 +33181,7 @@
}
},
{
- "id": 1255,
+ "id": 1256,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -33189,20 +33189,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1009,
+ "line": 1017,
"character": 4
}
],
"parameters": [
{
- "id": 1256,
+ "id": 1257,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1119,
+ "target": 1120,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -33217,7 +33217,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -33232,30 +33232,30 @@
"groups": [
{
"title": "Properties",
- "children": [1271]
+ "children": [1272]
},
{
"title": "Methods",
- "children": [1175, 1260, 1155, 1268, 1266, 1257, 1236]
+ "children": [1176, 1261, 1156, 1269, 1267, 1258, 1237]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 980,
+ "line": 988,
"character": 17
}
]
},
{
- "id": 1354,
+ "id": 1355,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1357,
+ "id": 1358,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -33265,7 +33265,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1246,
+ "line": 1254,
"character": 4
}
],
@@ -33275,7 +33275,7 @@
}
},
{
- "id": 1356,
+ "id": 1357,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -33283,7 +33283,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1245,
+ "line": 1253,
"character": 4
}
],
@@ -33296,7 +33296,7 @@
}
},
{
- "id": 1358,
+ "id": 1359,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -33306,7 +33306,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1247,
+ "line": 1255,
"character": 4
}
],
@@ -33316,7 +33316,7 @@
}
},
{
- "id": 1355,
+ "id": 1356,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -33324,7 +33324,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1244,
+ "line": 1252,
"character": 4
}
],
@@ -33350,19 +33350,19 @@
"groups": [
{
"title": "Properties",
- "children": [1357, 1356, 1358, 1355]
+ "children": [1358, 1357, 1359, 1356]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1243,
+ "line": 1251,
"character": 17
}
],
"indexSignatures": [
{
- "id": 1359,
+ "id": 1360,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -33370,13 +33370,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1248,
+ "line": 1256,
"character": 4
}
],
"parameters": [
{
- "id": 1360,
+ "id": 1361,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33395,7 +33395,7 @@
]
},
{
- "id": 1334,
+ "id": 1335,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -33421,7 +33421,7 @@
},
"children": [
{
- "id": 1350,
+ "id": 1351,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -33431,13 +33431,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1214,
+ "line": 1222,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1148,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -33448,7 +33448,7 @@
}
},
{
- "id": 1342,
+ "id": 1343,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -33466,7 +33466,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1239,
+ "line": 1247,
"character": 4
}
],
@@ -33484,7 +33484,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 842,
+ "target": 843,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
@@ -33493,7 +33493,7 @@
}
},
{
- "id": 1340,
+ "id": 1341,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -33503,19 +33503,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1231,
+ "line": 1239,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1346,
+ "id": 1347,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -33525,7 +33525,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1210,
+ "line": 1218,
"character": 4
}
],
@@ -33552,7 +33552,7 @@
}
},
{
- "id": 1335,
+ "id": 1336,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -33562,7 +33562,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1226,
+ "line": 1234,
"character": 4
}
],
@@ -33572,7 +33572,7 @@
}
},
{
- "id": 1347,
+ "id": 1348,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -33582,7 +33582,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1211,
+ "line": 1219,
"character": 4
}
],
@@ -33597,7 +33597,7 @@
}
},
{
- "id": 1348,
+ "id": 1349,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -33607,7 +33607,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1212,
+ "line": 1220,
"character": 4
}
],
@@ -33622,7 +33622,7 @@
}
},
{
- "id": 1337,
+ "id": 1338,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -33632,7 +33632,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1228,
+ "line": 1236,
"character": 4
}
],
@@ -33642,7 +33642,7 @@
}
},
{
- "id": 1344,
+ "id": 1345,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -33652,7 +33652,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1208,
+ "line": 1216,
"character": 4
}
],
@@ -33667,7 +33667,7 @@
}
},
{
- "id": 1338,
+ "id": 1339,
"name": "jti",
"variant": "declaration",
"kind": 1024,
@@ -33677,7 +33677,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1229,
+ "line": 1237,
"character": 4
}
],
@@ -33687,7 +33687,7 @@
}
},
{
- "id": 1339,
+ "id": 1340,
"name": "nbf",
"variant": "declaration",
"kind": 1024,
@@ -33697,7 +33697,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1230,
+ "line": 1238,
"character": 4
}
],
@@ -33707,7 +33707,7 @@
}
},
{
- "id": 1336,
+ "id": 1337,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -33717,7 +33717,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1227,
+ "line": 1235,
"character": 4
}
],
@@ -33727,7 +33727,7 @@
}
},
{
- "id": 1343,
+ "id": 1344,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -33737,7 +33737,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1240,
+ "line": 1248,
"character": 4
}
],
@@ -33747,7 +33747,7 @@
}
},
{
- "id": 1349,
+ "id": 1350,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -33757,7 +33757,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1213,
+ "line": 1221,
"character": 4
}
],
@@ -33772,7 +33772,7 @@
}
},
{
- "id": 1351,
+ "id": 1352,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -33782,7 +33782,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1215,
+ "line": 1223,
"character": 4
}
],
@@ -33797,7 +33797,7 @@
}
},
{
- "id": 1345,
+ "id": 1346,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -33807,7 +33807,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1209,
+ "line": 1217,
"character": 4
}
],
@@ -33822,7 +33822,7 @@
}
},
{
- "id": 1341,
+ "id": 1342,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -33832,13 +33832,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1232,
+ "line": 1240,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 874,
+ "target": 875,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -33848,21 +33848,21 @@
{
"title": "Properties",
"children": [
- 1350, 1342, 1340, 1346, 1335, 1347, 1348, 1337, 1344, 1338, 1339, 1336, 1343, 1349,
- 1351, 1345, 1341
+ 1351, 1343, 1341, 1347, 1336, 1348, 1349, 1338, 1345, 1339, 1340, 1337, 1344, 1350,
+ 1352, 1346, 1342
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1225,
+ "line": 1233,
"character": 17
}
],
"indexSignatures": [
{
- "id": 1352,
+ "id": 1353,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -33870,13 +33870,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1241,
+ "line": 1249,
"character": 4
}
],
"parameters": [
{
- "id": 1353,
+ "id": 1354,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33896,21 +33896,21 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1324,
+ "target": 1325,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 897,
+ "id": 898,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 899,
+ "id": 900,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -33926,14 +33926,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 470,
+ "line": 478,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 900,
+ "id": 901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -33941,13 +33941,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 470,
+ "line": 478,
"character": 14
}
],
"signatures": [
{
- "id": 901,
+ "id": 902,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -33955,13 +33955,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 470,
+ "line": 478,
"character": 14
}
],
"parameters": [
{
- "id": 902,
+ "id": 903,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -33974,7 +33974,7 @@
}
},
{
- "id": 903,
+ "id": 904,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -34006,7 +34006,7 @@
}
},
{
- "id": 898,
+ "id": 899,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -34022,7 +34022,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 466,
+ "line": 474,
"character": 4
}
],
@@ -34041,7 +34041,7 @@
}
},
{
- "id": 904,
+ "id": 905,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -34057,14 +34057,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 474,
+ "line": 482,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 905,
+ "id": 906,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34072,13 +34072,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 474,
+ "line": 482,
"character": 17
}
],
"signatures": [
{
- "id": 906,
+ "id": 907,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34086,7 +34086,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 474,
+ "line": 482,
"character": 17
}
],
@@ -34103,26 +34103,26 @@
"groups": [
{
"title": "Properties",
- "children": [899, 898, 904]
+ "children": [900, 899, 905]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 460,
+ "line": 468,
"character": 17
}
]
},
{
- "id": 869,
+ "id": 870,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 870,
+ "id": 871,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -34140,7 +34140,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 328,
+ "line": 336,
"character": 4
}
],
@@ -34150,7 +34150,7 @@
}
},
{
- "id": 871,
+ "id": 872,
"name": "providers",
"variant": "declaration",
"kind": 1024,
@@ -34168,7 +34168,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 332,
+ "line": 340,
"character": 4
}
],
@@ -34184,19 +34184,19 @@
"groups": [
{
"title": "Properties",
- "children": [870, 871]
+ "children": [871, 872]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 324,
+ "line": 332,
"character": 17
}
],
"indexSignatures": [
{
- "id": 872,
+ "id": 873,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -34204,13 +34204,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 333,
+ "line": 341,
"character": 4
}
],
"parameters": [
{
- "id": 873,
+ "id": 874,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -34229,14 +34229,14 @@
]
},
{
- "id": 878,
+ "id": 879,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 883,
+ "id": 884,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -34270,7 +34270,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 391,
+ "line": 399,
"character": 4
}
],
@@ -34280,7 +34280,7 @@
}
},
{
- "id": 879,
+ "id": 880,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -34298,7 +34298,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 370,
+ "line": 378,
"character": 4
}
],
@@ -34308,7 +34308,7 @@
}
},
{
- "id": 882,
+ "id": 883,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -34326,7 +34326,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 384,
+ "line": 392,
"character": 4
}
],
@@ -34336,7 +34336,7 @@
}
},
{
- "id": 881,
+ "id": 882,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -34354,7 +34354,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 378,
+ "line": 386,
"character": 4
}
],
@@ -34364,7 +34364,7 @@
}
},
{
- "id": 880,
+ "id": 881,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -34382,7 +34382,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 374,
+ "line": 382,
"character": 4
}
],
@@ -34395,26 +34395,26 @@
"groups": [
{
"title": "Properties",
- "children": [883, 879, 882, 881, 880]
+ "children": [884, 880, 883, 882, 881]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 366,
+ "line": 374,
"character": 17
}
]
},
{
- "id": 845,
+ "id": 846,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 854,
+ "id": 855,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -34424,7 +34424,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 286,
+ "line": 294,
"character": 4
}
],
@@ -34434,7 +34434,7 @@
}
},
{
- "id": 846,
+ "id": 847,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -34442,7 +34442,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 279,
+ "line": 287,
"character": 4
}
],
@@ -34452,7 +34452,7 @@
}
},
{
- "id": 848,
+ "id": 849,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -34462,14 +34462,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 281,
+ "line": 289,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 849,
+ "id": 850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34477,13 +34477,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 281,
+ "line": 289,
"character": 20
}
],
"indexSignatures": [
{
- "id": 850,
+ "id": 851,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -34491,13 +34491,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 282,
+ "line": 290,
"character": 8
}
],
"parameters": [
{
- "id": 851,
+ "id": 852,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -34518,7 +34518,7 @@
}
},
{
- "id": 852,
+ "id": 853,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -34526,7 +34526,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 284,
+ "line": 292,
"character": 4
}
],
@@ -34536,7 +34536,7 @@
}
},
{
- "id": 855,
+ "id": 856,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -34546,7 +34546,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 287,
+ "line": 295,
"character": 4
}
],
@@ -34556,7 +34556,7 @@
}
},
{
- "id": 853,
+ "id": 854,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -34564,7 +34564,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 285,
+ "line": 293,
"character": 4
}
],
@@ -34574,7 +34574,7 @@
}
},
{
- "id": 856,
+ "id": 857,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -34584,7 +34584,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 288,
+ "line": 296,
"character": 4
}
],
@@ -34594,7 +34594,7 @@
}
},
{
- "id": 847,
+ "id": 848,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -34602,7 +34602,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 280,
+ "line": 288,
"character": 4
}
],
@@ -34615,19 +34615,19 @@
"groups": [
{
"title": "Properties",
- "children": [854, 846, 848, 852, 855, 853, 856, 847]
+ "children": [855, 847, 849, 853, 856, 854, 857, 848]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 278,
+ "line": 286,
"character": 17
}
]
},
{
- "id": 874,
+ "id": 875,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -34635,13 +34635,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 335,
+ "line": 343,
"character": 17
}
],
"indexSignatures": [
{
- "id": 875,
+ "id": 876,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -34649,13 +34649,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 336,
+ "line": 344,
"character": 4
}
],
"parameters": [
{
- "id": 876,
+ "id": 877,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -34674,14 +34674,14 @@
]
},
{
- "id": 1027,
+ "id": 1028,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1028,
+ "id": 1029,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -34697,7 +34697,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 652,
+ "line": 660,
"character": 4
}
],
@@ -34707,7 +34707,7 @@
}
},
{
- "id": 1031,
+ "id": 1032,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -34717,21 +34717,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 657,
+ "line": 665,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1032,
+ "id": 1033,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1034,
+ "id": 1035,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -34755,7 +34755,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 664,
+ "line": 672,
"character": 8
}
],
@@ -34765,7 +34765,7 @@
}
},
{
- "id": 1033,
+ "id": 1034,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -34783,7 +34783,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 659,
+ "line": 667,
"character": 8
}
],
@@ -34796,13 +34796,13 @@
"groups": [
{
"title": "Properties",
- "children": [1034, 1033]
+ "children": [1035, 1034]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 657,
+ "line": 665,
"character": 14
}
]
@@ -34810,7 +34810,7 @@
}
},
{
- "id": 1029,
+ "id": 1030,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -34826,7 +34826,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 654,
+ "line": 662,
"character": 4
}
],
@@ -34836,7 +34836,7 @@
}
},
{
- "id": 1030,
+ "id": 1031,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -34852,13 +34852,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 656,
+ "line": 664,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1039,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -34867,26 +34867,26 @@
"groups": [
{
"title": "Properties",
- "children": [1028, 1031, 1029, 1030]
+ "children": [1029, 1032, 1030, 1031]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 650,
+ "line": 658,
"character": 17
}
]
},
{
- "id": 1019,
+ "id": 1020,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1023,
+ "id": 1024,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -34896,21 +34896,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 639,
+ "line": 647,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1024,
+ "id": 1025,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1026,
+ "id": 1027,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -34934,7 +34934,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 647,
+ "line": 655,
"character": 8
}
],
@@ -34944,7 +34944,7 @@
}
},
{
- "id": 1025,
+ "id": 1026,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -34962,7 +34962,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 641,
+ "line": 649,
"character": 8
}
],
@@ -34975,13 +34975,13 @@
"groups": [
{
"title": "Properties",
- "children": [1026, 1025]
+ "children": [1027, 1026]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 639,
+ "line": 647,
"character": 14
}
]
@@ -34989,7 +34989,7 @@
}
},
{
- "id": 1020,
+ "id": 1021,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -35005,7 +35005,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 634,
+ "line": 642,
"character": 4
}
],
@@ -35015,7 +35015,7 @@
}
},
{
- "id": 1021,
+ "id": 1022,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -35031,7 +35031,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 636,
+ "line": 644,
"character": 4
}
],
@@ -35041,7 +35041,7 @@
}
},
{
- "id": 1022,
+ "id": 1023,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -35057,13 +35057,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 638,
+ "line": 646,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1038,
+ "target": 1039,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -35072,26 +35072,26 @@
"groups": [
{
"title": "Properties",
- "children": [1023, 1020, 1021, 1022]
+ "children": [1024, 1021, 1022, 1023]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 632,
+ "line": 640,
"character": 17
}
]
},
{
- "id": 1035,
+ "id": 1036,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1036,
+ "id": 1037,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -35107,7 +35107,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 669,
+ "line": 677,
"character": 4
}
],
@@ -35117,7 +35117,7 @@
}
},
{
- "id": 1037,
+ "id": 1038,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -35133,13 +35133,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 671,
+ "line": 679,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1039,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -35148,26 +35148,26 @@
"groups": [
{
"title": "Properties",
- "children": [1036, 1037]
+ "children": [1037, 1038]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 667,
+ "line": 675,
"character": 17
}
]
},
{
- "id": 2263,
+ "id": 2264,
"name": "WebSocketLike",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 2306,
+ "id": 2307,
"name": "binaryType",
"variant": "declaration",
"kind": 1024,
@@ -35187,7 +35187,7 @@
}
},
{
- "id": 2307,
+ "id": 2308,
"name": "bufferedAmount",
"variant": "declaration",
"kind": 1024,
@@ -35207,7 +35207,7 @@
}
},
{
- "id": 2267,
+ "id": 2268,
"name": "CLOSED",
"variant": "declaration",
"kind": 1024,
@@ -35227,7 +35227,7 @@
}
},
{
- "id": 2266,
+ "id": 2267,
"name": "CLOSING",
"variant": "declaration",
"kind": 1024,
@@ -35247,7 +35247,7 @@
}
},
{
- "id": 2264,
+ "id": 2265,
"name": "CONNECTING",
"variant": "declaration",
"kind": 1024,
@@ -35267,7 +35267,7 @@
}
},
{
- "id": 2309,
+ "id": 2310,
"name": "dispatchEvent",
"variant": "declaration",
"kind": 1024,
@@ -35284,7 +35284,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2310,
+ "id": 2311,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35298,7 +35298,7 @@
],
"signatures": [
{
- "id": 2311,
+ "id": 2312,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -35312,7 +35312,7 @@
],
"parameters": [
{
- "id": 2312,
+ "id": 2313,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -35338,7 +35338,7 @@
}
},
{
- "id": 2308,
+ "id": 2309,
"name": "extensions",
"variant": "declaration",
"kind": 1024,
@@ -35358,7 +35358,7 @@
}
},
{
- "id": 2288,
+ "id": 2289,
"name": "onclose",
"variant": "declaration",
"kind": 1024,
@@ -35380,7 +35380,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2289,
+ "id": 2290,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35394,7 +35394,7 @@
],
"signatures": [
{
- "id": 2290,
+ "id": 2291,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -35408,7 +35408,7 @@
],
"parameters": [
{
- "id": 2291,
+ "id": 2292,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -35419,7 +35419,7 @@
}
},
{
- "id": 2292,
+ "id": 2293,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -35447,7 +35447,7 @@
}
},
{
- "id": 2293,
+ "id": 2294,
"name": "onerror",
"variant": "declaration",
"kind": 1024,
@@ -35469,7 +35469,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2294,
+ "id": 2295,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35483,7 +35483,7 @@
],
"signatures": [
{
- "id": 2295,
+ "id": 2296,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -35497,7 +35497,7 @@
],
"parameters": [
{
- "id": 2296,
+ "id": 2297,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -35508,7 +35508,7 @@
}
},
{
- "id": 2297,
+ "id": 2298,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -35536,7 +35536,7 @@
}
},
{
- "id": 2283,
+ "id": 2284,
"name": "onmessage",
"variant": "declaration",
"kind": 1024,
@@ -35558,7 +35558,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2284,
+ "id": 2285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35572,7 +35572,7 @@
],
"signatures": [
{
- "id": 2285,
+ "id": 2286,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -35586,7 +35586,7 @@
],
"parameters": [
{
- "id": 2286,
+ "id": 2287,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -35597,7 +35597,7 @@
}
},
{
- "id": 2287,
+ "id": 2288,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -35625,7 +35625,7 @@
}
},
{
- "id": 2278,
+ "id": 2279,
"name": "onopen",
"variant": "declaration",
"kind": 1024,
@@ -35647,7 +35647,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2279,
+ "id": 2280,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35661,7 +35661,7 @@
],
"signatures": [
{
- "id": 2280,
+ "id": 2281,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -35675,7 +35675,7 @@
],
"parameters": [
{
- "id": 2281,
+ "id": 2282,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -35686,7 +35686,7 @@
}
},
{
- "id": 2282,
+ "id": 2283,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -35714,7 +35714,7 @@
}
},
{
- "id": 2265,
+ "id": 2266,
"name": "OPEN",
"variant": "declaration",
"kind": 1024,
@@ -35734,7 +35734,7 @@
}
},
{
- "id": 2270,
+ "id": 2271,
"name": "protocol",
"variant": "declaration",
"kind": 1024,
@@ -35754,7 +35754,7 @@
}
},
{
- "id": 2268,
+ "id": 2269,
"name": "readyState",
"variant": "declaration",
"kind": 1024,
@@ -35774,7 +35774,7 @@
}
},
{
- "id": 2269,
+ "id": 2270,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -35794,7 +35794,7 @@
}
},
{
- "id": 2298,
+ "id": 2299,
"name": "addEventListener",
"variant": "declaration",
"kind": 2048,
@@ -35808,7 +35808,7 @@
],
"signatures": [
{
- "id": 2299,
+ "id": 2300,
"name": "addEventListener",
"variant": "signature",
"kind": 4096,
@@ -35830,7 +35830,7 @@
],
"parameters": [
{
- "id": 2300,
+ "id": 2301,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -35841,7 +35841,7 @@
}
},
{
- "id": 2301,
+ "id": 2302,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -35865,7 +35865,7 @@
]
},
{
- "id": 2271,
+ "id": 2272,
"name": "close",
"variant": "declaration",
"kind": 2048,
@@ -35879,7 +35879,7 @@
],
"signatures": [
{
- "id": 2272,
+ "id": 2273,
"name": "close",
"variant": "signature",
"kind": 4096,
@@ -35901,7 +35901,7 @@
],
"parameters": [
{
- "id": 2273,
+ "id": 2274,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -35914,7 +35914,7 @@
}
},
{
- "id": 2274,
+ "id": 2275,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -35935,7 +35935,7 @@
]
},
{
- "id": 2302,
+ "id": 2303,
"name": "removeEventListener",
"variant": "declaration",
"kind": 2048,
@@ -35949,7 +35949,7 @@
],
"signatures": [
{
- "id": 2303,
+ "id": 2304,
"name": "removeEventListener",
"variant": "signature",
"kind": 4096,
@@ -35971,7 +35971,7 @@
],
"parameters": [
{
- "id": 2304,
+ "id": 2305,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -35982,7 +35982,7 @@
}
},
{
- "id": 2305,
+ "id": 2306,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -36006,7 +36006,7 @@
]
},
{
- "id": 2275,
+ "id": 2276,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -36020,7 +36020,7 @@
],
"signatures": [
{
- "id": 2276,
+ "id": 2277,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -36042,7 +36042,7 @@
],
"parameters": [
{
- "id": 2277,
+ "id": 2278,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -36108,13 +36108,13 @@
{
"title": "Properties",
"children": [
- 2306, 2307, 2267, 2266, 2264, 2309, 2308, 2288, 2293, 2283, 2278, 2265, 2270, 2268,
- 2269
+ 2307, 2308, 2268, 2267, 2265, 2310, 2309, 2289, 2294, 2284, 2279, 2266, 2271, 2269,
+ 2270
]
},
{
"title": "Methods",
- "children": [2298, 2271, 2302, 2275]
+ "children": [2299, 2272, 2303, 2276]
}
],
"sources": [
@@ -36126,7 +36126,7 @@
]
},
{
- "id": 2313,
+ "id": 2314,
"name": "WebSocketLikeConstructor",
"variant": "declaration",
"kind": 256,
@@ -36149,7 +36149,7 @@
},
"children": [
{
- "id": 2314,
+ "id": 2315,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -36163,7 +36163,7 @@
],
"signatures": [
{
- "id": 2315,
+ "id": 2316,
"name": "WebSocketLikeConstructor",
"variant": "signature",
"kind": 16384,
@@ -36177,7 +36177,7 @@
],
"parameters": [
{
- "id": 2316,
+ "id": 2317,
"name": "address",
"variant": "param",
"kind": 32768,
@@ -36202,7 +36202,7 @@
}
},
{
- "id": 2317,
+ "id": 2318,
"name": "subprotocols",
"variant": "param",
"kind": 32768,
@@ -36229,7 +36229,7 @@
],
"type": {
"type": "reference",
- "target": 2263,
+ "target": 2264,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -36240,7 +36240,7 @@
"groups": [
{
"title": "Constructors",
- "children": [2314]
+ "children": [2315]
}
],
"sources": [
@@ -36252,7 +36252,7 @@
],
"indexSignatures": [
{
- "id": 2318,
+ "id": 2319,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -36266,7 +36266,7 @@
],
"parameters": [
{
- "id": 2319,
+ "id": 2320,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -36285,7 +36285,7 @@
]
},
{
- "id": 840,
+ "id": 841,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -36293,7 +36293,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 256,
+ "line": 264,
"character": 12
}
],
@@ -36330,7 +36330,7 @@
{
"type": "reflection",
"declaration": {
- "id": 841,
+ "id": 842,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -36338,7 +36338,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 256,
+ "line": 264,
"character": 64
}
]
@@ -36417,7 +36417,7 @@
}
},
{
- "id": 1148,
+ "id": 1149,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -36425,7 +36425,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 954,
+ "line": 962,
"character": 12
}
],
@@ -36444,7 +36444,7 @@
}
},
{
- "id": 943,
+ "id": 944,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -36452,7 +36452,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 543,
+ "line": 551,
"character": 12
}
],
@@ -36471,7 +36471,7 @@
}
},
{
- "id": 1275,
+ "id": 1276,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -36488,21 +36488,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1057,
+ "line": 1065,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1276,
+ "id": 1277,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1277,
+ "id": 1278,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -36518,7 +36518,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1059,
+ "line": 1067,
"character": 4
}
],
@@ -36528,7 +36528,7 @@
}
},
{
- "id": 1278,
+ "id": 1279,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -36544,7 +36544,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1061,
+ "line": 1069,
"character": 4
}
],
@@ -36557,13 +36557,13 @@
"groups": [
{
"title": "Properties",
- "children": [1277, 1278]
+ "children": [1278, 1279]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1057,
+ "line": 1065,
"character": 45
}
]
@@ -36571,7 +36571,7 @@
}
},
{
- "id": 1272,
+ "id": 1273,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36588,25 +36588,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1050,
+ "line": 1058,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1273,
+ "id": 1274,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1274,
+ "id": 1275,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -36622,7 +36622,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1052,
+ "line": 1060,
"character": 4
}
],
@@ -36635,13 +36635,13 @@
"groups": [
{
"title": "Properties",
- "children": [1274]
+ "children": [1275]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1050,
+ "line": 1058,
"character": 61
}
]
@@ -36653,7 +36653,7 @@
}
},
{
- "id": 1282,
+ "id": 1283,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -36670,21 +36670,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1073,
+ "line": 1081,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1283,
+ "id": 1284,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1284,
+ "id": 1285,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -36700,7 +36700,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1075,
+ "line": 1083,
"character": 4
}
],
@@ -36713,13 +36713,13 @@
"groups": [
{
"title": "Properties",
- "children": [1284]
+ "children": [1285]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1073,
+ "line": 1081,
"character": 44
}
]
@@ -36727,7 +36727,7 @@
}
},
{
- "id": 1279,
+ "id": 1280,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36744,25 +36744,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1066,
+ "line": 1074,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1280,
+ "id": 1281,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1281,
+ "id": 1282,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -36778,7 +36778,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1068,
+ "line": 1076,
"character": 4
}
],
@@ -36786,7 +36786,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 858,
+ "target": 859,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -36796,13 +36796,13 @@
"groups": [
{
"title": "Properties",
- "children": [1281]
+ "children": [1282]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1066,
+ "line": 1074,
"character": 60
}
]
@@ -36814,7 +36814,7 @@
}
},
{
- "id": 1139,
+ "id": 1140,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36822,17 +36822,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 903,
+ "line": 911,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -36873,7 +36873,7 @@
}
},
{
- "id": 1143,
+ "id": 1144,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36881,7 +36881,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 946,
+ "line": 954,
"character": 12
}
],
@@ -36890,19 +36890,19 @@
"types": [
{
"type": "reference",
- "target": 1138,
+ "target": 1139,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1139,
+ "target": 1140,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1140,
+ "target": 1141,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -36910,7 +36910,7 @@
}
},
{
- "id": 1138,
+ "id": 1139,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36918,17 +36918,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 901,
+ "line": 909,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -36969,7 +36969,7 @@
}
},
{
- "id": 1140,
+ "id": 1141,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36998,17 +36998,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 922,
+ "line": 930,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -37049,7 +37049,7 @@
}
},
{
- "id": 1141,
+ "id": 1142,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -37065,13 +37065,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 940,
+ "line": 948,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -37108,7 +37108,7 @@
}
},
{
- "id": 1142,
+ "id": 1143,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37124,17 +37124,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 945,
+ "line": 953,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 1141,
+ "target": 1142,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -37144,7 +37144,7 @@
}
},
{
- "id": 1317,
+ "id": 1318,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37152,17 +37152,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1194,
+ "line": 1202,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -37203,7 +37203,7 @@
}
},
{
- "id": 1134,
+ "id": 1135,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37211,7 +37211,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 887,
+ "line": 895,
"character": 12
}
],
@@ -37220,19 +37220,19 @@
"types": [
{
"type": "reference",
- "target": 1316,
+ "target": 1317,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1317,
+ "target": 1318,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1318,
+ "target": 1319,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -37240,7 +37240,7 @@
}
},
{
- "id": 1316,
+ "id": 1317,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37248,17 +37248,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1189,
+ "line": 1197,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -37299,7 +37299,7 @@
}
},
{
- "id": 1318,
+ "id": 1319,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37328,17 +37328,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1201,
+ "line": 1209,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -37379,7 +37379,7 @@
}
},
{
- "id": 1149,
+ "id": 1150,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37387,25 +37387,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 955,
+ "line": 963,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1150,
+ "id": 1151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1153,
+ "id": 1154,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -37421,7 +37421,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 974,
+ "line": 982,
"character": 4
}
],
@@ -37432,7 +37432,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 842,
+ "target": 843,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
@@ -37448,7 +37448,7 @@
}
},
{
- "id": 1151,
+ "id": 1152,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -37464,7 +37464,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 957,
+ "line": 965,
"character": 4
}
],
@@ -37473,7 +37473,7 @@
"types": [
{
"type": "reference",
- "target": 1148,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -37485,7 +37485,7 @@
}
},
{
- "id": 1152,
+ "id": 1153,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -37505,7 +37505,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1175
+ "target": 1176
}
]
}
@@ -37514,7 +37514,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 964,
+ "line": 972,
"character": 4
}
],
@@ -37523,7 +37523,7 @@
"types": [
{
"type": "reference",
- "target": 1148,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -37538,13 +37538,13 @@
"groups": [
{
"title": "Properties",
- "children": [1153, 1151, 1152]
+ "children": [1154, 1152, 1153]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 955,
+ "line": 963,
"character": 74
}
]
@@ -37556,7 +37556,7 @@
}
},
{
- "id": 1144,
+ "id": 1145,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37572,13 +37572,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 948,
+ "line": 956,
"character": 12
}
],
"typeParameters": [
{
- "id": 1147,
+ "id": 1148,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -37613,7 +37613,7 @@
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "intersection",
@@ -37621,14 +37621,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1145,
+ "id": 1146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1146,
+ "id": 1147,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -37644,7 +37644,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 950,
+ "line": 958,
"character": 4
}
],
@@ -37652,11 +37652,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "reference",
- "target": 858,
+ "target": 859,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -37670,13 +37670,13 @@
"groups": [
{
"title": "Properties",
- "children": [1146]
+ "children": [1147]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 948,
+ "line": 956,
"character": 106
}
]
@@ -37693,7 +37693,7 @@
},
"objectType": {
"type": "reference",
- "target": 1147,
+ "target": 1148,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -37703,11 +37703,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "reference",
- "target": 858,
+ "target": 859,
"typeArguments": [
{
"type": "reference",
@@ -37741,7 +37741,7 @@
}
},
{
- "id": 1135,
+ "id": 1136,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37749,25 +37749,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 888,
+ "line": 896,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1136,
+ "id": 1137,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1137,
+ "id": 1138,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -37783,7 +37783,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 890,
+ "line": 898,
"character": 4
}
],
@@ -37796,13 +37796,13 @@
"groups": [
{
"title": "Properties",
- "children": [1137]
+ "children": [1138]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 888,
+ "line": 896,
"character": 52
}
]
@@ -37814,7 +37814,7 @@
}
},
{
- "id": 1133,
+ "id": 1134,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37830,17 +37830,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 886,
+ "line": 894,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 1126,
+ "target": 1127,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -37850,7 +37850,7 @@
}
},
{
- "id": 1126,
+ "id": 1127,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -37866,21 +37866,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 870,
+ "line": 878,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1127,
+ "id": 1128,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1128,
+ "id": 1129,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -37896,7 +37896,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 872,
+ "line": 880,
"character": 4
}
],
@@ -37906,7 +37906,7 @@
}
},
{
- "id": 1130,
+ "id": 1131,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -37922,7 +37922,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 876,
+ "line": 884,
"character": 4
}
],
@@ -37932,7 +37932,7 @@
}
},
{
- "id": 1131,
+ "id": 1132,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -37948,7 +37948,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 878,
+ "line": 886,
"character": 4
}
],
@@ -37958,7 +37958,7 @@
}
},
{
- "id": 1129,
+ "id": 1130,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -37982,7 +37982,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 874,
+ "line": 882,
"character": 4
}
],
@@ -37992,7 +37992,7 @@
}
},
{
- "id": 1132,
+ "id": 1133,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38008,7 +38008,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 880,
+ "line": 888,
"character": 4
}
],
@@ -38023,13 +38023,13 @@
"groups": [
{
"title": "Properties",
- "children": [1128, 1130, 1131, 1129, 1132]
+ "children": [1129, 1131, 1132, 1130, 1133]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 870,
+ "line": 878,
"character": 40
}
]
@@ -38037,7 +38037,7 @@
}
},
{
- "id": 1453,
+ "id": 1454,
"name": "AuthOAuthAuthorizationDetailsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38064,26 +38064,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1494,
+ "line": 1502,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "union",
"types": [
{
"type": "reference",
- "target": 1440,
+ "target": 1441,
"name": "OAuthAuthorizationDetails",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1450,
+ "target": 1451,
"name": "OAuthRedirect",
"package": "@supabase/auth-js"
}
@@ -38095,7 +38095,7 @@
}
},
{
- "id": 1454,
+ "id": 1455,
"name": "AuthOAuthConsentResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38111,17 +38111,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1499,
+ "line": 1507,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 1450,
+ "target": 1451,
"name": "OAuthRedirect",
"package": "@supabase/auth-js"
}
@@ -38131,7 +38131,7 @@
}
},
{
- "id": 1460,
+ "id": 1461,
"name": "AuthOAuthGrantsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38147,19 +38147,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1516,
+ "line": 1524,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "array",
"elementType": {
"type": "reference",
- "target": 1455,
+ "target": 1456,
"name": "OAuthGrant",
"package": "@supabase/auth-js"
}
@@ -38170,7 +38170,7 @@
}
},
{
- "id": 1461,
+ "id": 1462,
"name": "AuthOAuthRevokeGrantResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38186,18 +38186,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1521,
+ "line": 1529,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1462,
+ "id": 1463,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -38205,7 +38205,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1521,
+ "line": 1529,
"character": 57
}
]
@@ -38217,7 +38217,7 @@
}
},
{
- "id": 806,
+ "id": 807,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38238,25 +38238,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 183,
+ "line": 191,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 807,
+ "id": 808,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 810,
+ "id": 811,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -38266,7 +38266,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 186,
+ "line": 194,
"character": 4
}
],
@@ -38285,7 +38285,7 @@
}
},
{
- "id": 809,
+ "id": 810,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -38293,7 +38293,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 185,
+ "line": 193,
"character": 4
}
],
@@ -38303,7 +38303,7 @@
}
},
{
- "id": 808,
+ "id": 809,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38311,7 +38311,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 184,
+ "line": 192,
"character": 4
}
],
@@ -38324,13 +38324,13 @@
"groups": [
{
"title": "Properties",
- "children": [810, 809, 808]
+ "children": [811, 810, 809]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 183,
+ "line": 191,
"character": 59
}
]
@@ -38342,7 +38342,7 @@
}
},
{
- "id": 797,
+ "id": 798,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38350,25 +38350,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 169,
+ "line": 177,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 798,
+ "id": 799,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 800,
+ "id": 801,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -38376,7 +38376,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 171,
+ "line": 179,
"character": 4
}
],
@@ -38397,7 +38397,7 @@
}
},
{
- "id": 799,
+ "id": 800,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38405,7 +38405,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 170,
+ "line": 178,
"character": 4
}
],
@@ -38429,13 +38429,13 @@
"groups": [
{
"title": "Properties",
- "children": [800, 799]
+ "children": [801, 800]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 169,
+ "line": 177,
"character": 56
}
]
@@ -38447,7 +38447,7 @@
}
},
{
- "id": 801,
+ "id": 802,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -38455,25 +38455,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 173,
+ "line": 181,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 802,
+ "id": 803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 804,
+ "id": 805,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -38481,7 +38481,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 175,
+ "line": 183,
"character": 4
}
],
@@ -38502,7 +38502,7 @@
}
},
{
- "id": 803,
+ "id": 804,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38510,7 +38510,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 174,
+ "line": 182,
"character": 4
}
],
@@ -38531,7 +38531,7 @@
}
},
{
- "id": 805,
+ "id": 806,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -38541,7 +38541,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 176,
+ "line": 184,
"character": 4
}
],
@@ -38550,7 +38550,7 @@
"types": [
{
"type": "reference",
- "target": 771,
+ "target": 772,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -38565,13 +38565,13 @@
"groups": [
{
"title": "Properties",
- "children": [804, 803, 805]
+ "children": [805, 804, 806]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 173,
+ "line": 181,
"character": 64
}
]
@@ -38583,7 +38583,7 @@
}
},
{
- "id": 811,
+ "id": 812,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -38591,25 +38591,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 188,
+ "line": 196,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 812,
+ "id": 813,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 814,
+ "id": 815,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -38617,7 +38617,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 190,
+ "line": 198,
"character": 4
}
],
@@ -38629,7 +38629,7 @@
}
},
{
- "id": 813,
+ "id": 814,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38637,7 +38637,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 189,
+ "line": 197,
"character": 4
}
],
@@ -38652,13 +38652,13 @@
"groups": [
{
"title": "Properties",
- "children": [814, 813]
+ "children": [815, 814]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 188,
+ "line": 196,
"character": 61
}
]
@@ -38670,7 +38670,7 @@
}
},
{
- "id": 815,
+ "id": 816,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -38678,25 +38678,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 192,
+ "line": 200,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 816,
+ "id": 817,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 818,
+ "id": 819,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -38704,7 +38704,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 194,
+ "line": 202,
"character": 4
}
],
@@ -38716,7 +38716,7 @@
}
},
{
- "id": 817,
+ "id": 818,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -38724,7 +38724,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 193,
+ "line": 201,
"character": 4
}
],
@@ -38736,7 +38736,7 @@
}
},
{
- "id": 819,
+ "id": 820,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -38746,13 +38746,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 195,
+ "line": 203,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 771,
+ "target": 772,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -38761,13 +38761,13 @@
"groups": [
{
"title": "Properties",
- "children": [818, 817, 819]
+ "children": [819, 818, 820]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 192,
+ "line": 200,
"character": 69
}
]
@@ -38779,7 +38779,7 @@
}
},
{
- "id": 1298,
+ "id": 1299,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -38787,13 +38787,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1116,
+ "line": 1124,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
@@ -38807,7 +38807,7 @@
}
},
{
- "id": 1383,
+ "id": 1384,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -38823,21 +38823,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1310,
+ "line": 1318,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1384,
+ "id": 1385,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1385,
+ "id": 1386,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -38853,7 +38853,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1312,
+ "line": 1320,
"character": 4
}
],
@@ -38863,7 +38863,7 @@
}
},
{
- "id": 1386,
+ "id": 1387,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -38881,7 +38881,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1314,
+ "line": 1322,
"character": 4
}
],
@@ -38891,7 +38891,7 @@
}
},
{
- "id": 1388,
+ "id": 1389,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -38909,7 +38909,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1318,
+ "line": 1326,
"character": 4
}
],
@@ -38917,14 +38917,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1363,
+ "target": 1364,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1387,
+ "id": 1388,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -38940,7 +38940,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1316,
+ "line": 1324,
"character": 4
}
],
@@ -38953,7 +38953,7 @@
}
},
{
- "id": 1389,
+ "id": 1390,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -38971,7 +38971,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1320,
+ "line": 1328,
"character": 4
}
],
@@ -38979,14 +38979,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1364,
+ "target": 1365,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1390,
+ "id": 1391,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -39004,7 +39004,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1322,
+ "line": 1330,
"character": 4
}
],
@@ -39017,13 +39017,13 @@
"groups": [
{
"title": "Properties",
- "children": [1385, 1386, 1388, 1387, 1389, 1390]
+ "children": [1386, 1387, 1389, 1388, 1390, 1391]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1310,
+ "line": 1318,
"character": 38
}
]
@@ -39060,7 +39060,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 173,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L173"
}
],
"typeParameters": [
@@ -39096,7 +39096,7 @@
}
},
{
- "id": 1039,
+ "id": 1040,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -39104,7 +39104,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 674,
+ "line": 682,
"character": 12
}
],
@@ -39139,7 +39139,7 @@
}
},
{
- "id": 999,
+ "id": 1000,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -39147,7 +39147,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 605,
+ "line": 613,
"character": 12
}
],
@@ -39162,7 +39162,7 @@
}
},
{
- "id": 1000,
+ "id": 1001,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -39170,7 +39170,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 606,
+ "line": 614,
"character": 12
}
],
@@ -39180,14 +39180,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1001,
+ "id": 1002,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1002,
+ "id": 1003,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -39195,7 +39195,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 607,
+ "line": 615,
"character": 4
}
],
@@ -39205,7 +39205,7 @@
}
},
{
- "id": 1005,
+ "id": 1006,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39215,21 +39215,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 612,
+ "line": 620,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1006,
+ "id": 1007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1008,
+ "id": 1009,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -39247,7 +39247,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 616,
+ "line": 624,
"character": 8
}
],
@@ -39257,7 +39257,7 @@
}
},
{
- "id": 1009,
+ "id": 1010,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -39267,7 +39267,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 617,
+ "line": 625,
"character": 8
}
],
@@ -39325,7 +39325,7 @@
}
},
{
- "id": 1007,
+ "id": 1008,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -39343,7 +39343,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 614,
+ "line": 622,
"character": 8
}
],
@@ -39356,13 +39356,13 @@
"groups": [
{
"title": "Properties",
- "children": [1008, 1009, 1007]
+ "children": [1009, 1010, 1008]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 612,
+ "line": 620,
"character": 14
}
]
@@ -39370,7 +39370,7 @@
}
},
{
- "id": 1004,
+ "id": 1005,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -39388,7 +39388,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 611,
+ "line": 619,
"character": 4
}
],
@@ -39398,7 +39398,7 @@
}
},
{
- "id": 1003,
+ "id": 1004,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -39424,13 +39424,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 609,
+ "line": 617,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 999,
+ "target": 1000,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -39439,13 +39439,13 @@
"groups": [
{
"title": "Properties",
- "children": [1002, 1005, 1004, 1003]
+ "children": [1003, 1006, 1005, 1004]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 606,
+ "line": 614,
"character": 38
}
]
@@ -39454,14 +39454,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1010,
+ "id": 1011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1011,
+ "id": 1012,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -39469,7 +39469,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 620,
+ "line": 628,
"character": 4
}
],
@@ -39479,7 +39479,7 @@
}
},
{
- "id": 1012,
+ "id": 1013,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -39519,7 +39519,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 622,
+ "line": 630,
"character": 4
}
],
@@ -39529,7 +39529,7 @@
}
},
{
- "id": 1014,
+ "id": 1015,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39539,21 +39539,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 625,
+ "line": 633,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1015,
+ "id": 1016,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1016,
+ "id": 1017,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -39571,7 +39571,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 627,
+ "line": 635,
"character": 8
}
],
@@ -39584,13 +39584,13 @@
"groups": [
{
"title": "Properties",
- "children": [1016]
+ "children": [1017]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 625,
+ "line": 633,
"character": 14
}
]
@@ -39598,7 +39598,7 @@
}
},
{
- "id": 1013,
+ "id": 1014,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -39614,7 +39614,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 624,
+ "line": 632,
"character": 4
}
],
@@ -39632,13 +39632,13 @@
"groups": [
{
"title": "Properties",
- "children": [1011, 1012, 1014, 1013]
+ "children": [1012, 1013, 1015, 1014]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 619,
+ "line": 627,
"character": 4
}
]
@@ -39648,7 +39648,7 @@
}
},
{
- "id": 858,
+ "id": 859,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -39672,7 +39672,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1155
+ "target": 1156
},
{
"kind": "text",
@@ -39686,7 +39686,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1266
+ "target": 1267
},
{
"kind": "text",
@@ -39712,32 +39712,32 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 307,
+ "line": 315,
"character": 12
}
],
"typeParameters": [
{
- "id": 867,
+ "id": 868,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 857,
+ "target": 858,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 857,
+ "target": 858,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 868,
+ "id": 869,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -39776,14 +39776,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 859,
+ "id": 860,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 864,
+ "id": 865,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -39791,7 +39791,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 320,
+ "line": 328,
"character": 4
}
],
@@ -39801,7 +39801,7 @@
}
},
{
- "id": 862,
+ "id": 863,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -39833,20 +39833,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 315,
+ "line": 323,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 867,
+ "target": 868,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 861,
+ "id": 862,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -39864,7 +39864,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 311,
+ "line": 319,
"character": 4
}
],
@@ -39874,7 +39874,7 @@
}
},
{
- "id": 860,
+ "id": 861,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -39890,7 +39890,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 309,
+ "line": 317,
"character": 4
}
],
@@ -39900,7 +39900,7 @@
}
},
{
- "id": 866,
+ "id": 867,
"name": "last_challenged_at",
"variant": "declaration",
"kind": 1024,
@@ -39910,7 +39910,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 322,
+ "line": 330,
"character": 4
}
],
@@ -39920,7 +39920,7 @@
}
},
{
- "id": 863,
+ "id": 864,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -39964,20 +39964,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 319,
+ "line": 327,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 868,
+ "target": 869,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 865,
+ "id": 866,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -39985,7 +39985,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 321,
+ "line": 329,
"character": 4
}
],
@@ -39998,13 +39998,13 @@
"groups": [
{
"title": "Properties",
- "children": [864, 862, 861, 860, 866, 863, 865]
+ "children": [865, 863, 862, 861, 867, 864, 866]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 307,
+ "line": 315,
"character": 146
}
]
@@ -40012,7 +40012,7 @@
}
},
{
- "id": 857,
+ "id": 858,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -40044,7 +40044,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 294,
+ "line": 302,
"character": 12
}
],
@@ -40431,7 +40431,7 @@
}
},
{
- "id": 1085,
+ "id": 1086,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -40439,21 +40439,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 741,
+ "line": 749,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1086,
+ "id": 1087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1088,
+ "id": 1089,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -40469,7 +40469,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 744,
+ "line": 752,
"character": 4
}
],
@@ -40479,7 +40479,7 @@
}
},
{
- "id": 1089,
+ "id": 1090,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -40495,7 +40495,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 748,
+ "line": 756,
"character": 4
}
],
@@ -40505,7 +40505,7 @@
}
},
{
- "id": 1090,
+ "id": 1091,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -40515,7 +40515,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 749,
+ "line": 757,
"character": 4
}
],
@@ -40528,7 +40528,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1091,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -40542,7 +40542,7 @@
}
},
{
- "id": 1087,
+ "id": 1088,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -40550,7 +40550,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 742,
+ "line": 750,
"character": 4
}
],
@@ -40572,13 +40572,13 @@
"groups": [
{
"title": "Properties",
- "children": [1088, 1089, 1090, 1087]
+ "children": [1089, 1090, 1091, 1088]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 741,
+ "line": 749,
"character": 44
}
]
@@ -40586,7 +40586,7 @@
}
},
{
- "id": 1075,
+ "id": 1076,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -40594,21 +40594,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 729,
+ "line": 737,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1076,
+ "id": 1077,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1078,
+ "id": 1079,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -40624,7 +40624,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 732,
+ "line": 740,
"character": 4
}
],
@@ -40634,7 +40634,7 @@
}
},
{
- "id": 1079,
+ "id": 1080,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -40644,7 +40644,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 733,
+ "line": 741,
"character": 4
}
],
@@ -40657,7 +40657,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1091,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -40680,7 +40680,7 @@
}
},
{
- "id": 1077,
+ "id": 1078,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -40688,7 +40688,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 730,
+ "line": 738,
"character": 4
}
],
@@ -40710,13 +40710,13 @@
"groups": [
{
"title": "Properties",
- "children": [1078, 1079, 1077]
+ "children": [1079, 1080, 1078]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 729,
+ "line": 737,
"character": 46
}
]
@@ -40724,7 +40724,7 @@
}
},
{
- "id": 1094,
+ "id": 1095,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -40732,7 +40732,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 761,
+ "line": 769,
"character": 12
}
],
@@ -40741,25 +40741,25 @@
"types": [
{
"type": "reference",
- "target": 1069,
+ "target": 1070,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1075,
+ "target": 1076,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1080,
+ "target": 1081,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1085,
+ "target": 1086,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -40767,7 +40767,7 @@
}
},
{
- "id": 1099,
+ "id": 1100,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -40783,21 +40783,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 767,
+ "line": 775,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1100,
+ "id": 1101,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1101,
+ "id": 1102,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -40813,7 +40813,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 772,
+ "line": 780,
"character": 4
}
],
@@ -40823,7 +40823,7 @@
}
},
{
- "id": 1102,
+ "id": 1103,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -40839,7 +40839,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 777,
+ "line": 785,
"character": 4
}
],
@@ -40849,7 +40849,7 @@
}
},
{
- "id": 1103,
+ "id": 1104,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -40865,7 +40865,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 781,
+ "line": 789,
"character": 4
}
],
@@ -40875,7 +40875,7 @@
}
},
{
- "id": 1104,
+ "id": 1105,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -40891,7 +40891,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 783,
+ "line": 791,
"character": 4
}
],
@@ -40901,7 +40901,7 @@
}
},
{
- "id": 1105,
+ "id": 1106,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -40917,13 +40917,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 785,
+ "line": 793,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1106,
+ "target": 1107,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -40932,13 +40932,13 @@
"groups": [
{
"title": "Properties",
- "children": [1101, 1102, 1103, 1104, 1105]
+ "children": [1102, 1103, 1104, 1105, 1106]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 767,
+ "line": 775,
"character": 37
}
]
@@ -40946,7 +40946,7 @@
}
},
{
- "id": 1095,
+ "id": 1096,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -40954,25 +40954,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 762,
+ "line": 770,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1096,
+ "id": 1097,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1097,
+ "id": 1098,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -40980,19 +40980,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 763,
+ "line": 771,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1099,
+ "target": 1100,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1098,
+ "id": 1099,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -41000,7 +41000,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 764,
+ "line": 772,
"character": 4
}
],
@@ -41015,13 +41015,13 @@
"groups": [
{
"title": "Properties",
- "children": [1097, 1098]
+ "children": [1098, 1099]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 762,
+ "line": 770,
"character": 64
}
]
@@ -41033,7 +41033,7 @@
}
},
{
- "id": 1106,
+ "id": 1107,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -41041,7 +41041,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 787,
+ "line": 795,
"character": 12
}
],
@@ -41076,7 +41076,7 @@
}
},
{
- "id": 1080,
+ "id": 1081,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -41084,21 +41084,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 735,
+ "line": 743,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1081,
+ "id": 1082,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1083,
+ "id": 1084,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -41114,7 +41114,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 738,
+ "line": 746,
"character": 4
}
],
@@ -41124,7 +41124,7 @@
}
},
{
- "id": 1084,
+ "id": 1085,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -41134,7 +41134,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 739,
+ "line": 747,
"character": 4
}
],
@@ -41147,7 +41147,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1091,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -41161,7 +41161,7 @@
}
},
{
- "id": 1082,
+ "id": 1083,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -41169,7 +41169,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 736,
+ "line": 744,
"character": 4
}
],
@@ -41182,13 +41182,13 @@
"groups": [
{
"title": "Properties",
- "children": [1083, 1084, 1082]
+ "children": [1084, 1085, 1083]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 735,
+ "line": 743,
"character": 41
}
]
@@ -41196,7 +41196,7 @@
}
},
{
- "id": 1069,
+ "id": 1070,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -41204,21 +41204,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 723,
+ "line": 731,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1070,
+ "id": 1071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1072,
+ "id": 1073,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -41226,7 +41226,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 725,
+ "line": 733,
"character": 4
}
],
@@ -41236,7 +41236,7 @@
}
},
{
- "id": 1074,
+ "id": 1075,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -41246,7 +41246,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 727,
+ "line": 735,
"character": 4
}
],
@@ -41259,7 +41259,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1091,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -41282,7 +41282,7 @@
}
},
{
- "id": 1073,
+ "id": 1074,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -41290,7 +41290,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 726,
+ "line": 734,
"character": 4
}
],
@@ -41300,7 +41300,7 @@
}
},
{
- "id": 1071,
+ "id": 1072,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -41308,7 +41308,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 724,
+ "line": 732,
"character": 4
}
],
@@ -41321,13 +41321,13 @@
"groups": [
{
"title": "Properties",
- "children": [1072, 1074, 1073, 1071]
+ "children": [1073, 1075, 1074, 1072]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 723,
+ "line": 731,
"character": 39
}
]
@@ -41651,7 +41651,7 @@
],
"type": {
"type": "reference",
- "target": 943,
+ "target": 944,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
@@ -41866,6 +41866,45 @@
"name": "boolean"
}
},
+ {
+ "id": 770,
+ "name": "skipAutoInitialize",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If true, skips automatic initialization in constructor. Useful for SSR\ncontexts where initialization timing must be controlled to prevent race\nconditions with HTTP response generation."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@default",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```ts\nfalse\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 133,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
{
"id": 757,
"name": "storage",
@@ -41883,7 +41922,7 @@
],
"type": {
"type": "reference",
- "target": 1292,
+ "target": 1293,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -42022,7 +42061,7 @@
],
"type": {
"type": "reference",
- "target": 1292,
+ "target": 1293,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -42032,7 +42071,7 @@
{
"title": "Properties",
"children": [
- 755, 761, 747, 759, 760, 767, 742, 766, 769, 756, 757, 746, 768, 741, 758
+ 755, 761, 747, 759, 760, 767, 742, 766, 769, 756, 770, 757, 746, 768, 741, 758
]
}
],
@@ -42047,7 +42086,7 @@
}
},
{
- "id": 1295,
+ "id": 1296,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -42055,21 +42094,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1113,
+ "line": 1121,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1296,
+ "id": 1297,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1297,
+ "id": 1298,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -42077,7 +42116,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1114,
+ "line": 1122,
"character": 4
}
],
@@ -42086,7 +42125,7 @@
"types": [
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -42101,13 +42140,13 @@
"groups": [
{
"title": "Properties",
- "children": [1297]
+ "children": [1298]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1113,
+ "line": 1121,
"character": 31
}
]
@@ -42115,7 +42154,7 @@
}
},
{
- "id": 1319,
+ "id": 1320,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -42123,21 +42162,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1202,
+ "line": 1210,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1320,
+ "id": 1321,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1321,
+ "id": 1322,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -42145,7 +42184,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1203,
+ "line": 1211,
"character": 4
}
],
@@ -42168,7 +42207,7 @@
}
},
{
- "id": 1322,
+ "id": 1323,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -42176,7 +42215,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1204,
+ "line": 1212,
"character": 4
}
],
@@ -42186,7 +42225,7 @@
}
},
{
- "id": 1323,
+ "id": 1324,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -42194,7 +42233,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1205,
+ "line": 1213,
"character": 4
}
],
@@ -42207,13 +42246,13 @@
"groups": [
{
"title": "Properties",
- "children": [1321, 1322, 1323]
+ "children": [1322, 1323, 1324]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1202,
+ "line": 1210,
"character": 24
}
]
@@ -42412,7 +42451,7 @@
}
},
{
- "id": 1125,
+ "id": 1126,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -42420,7 +42459,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 865,
+ "line": 873,
"character": 12
}
],
@@ -42435,7 +42474,7 @@
}
},
{
- "id": 1124,
+ "id": 1125,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -42443,7 +42482,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 861,
+ "line": 869,
"character": 12
}
],
@@ -42452,19 +42491,19 @@
"types": [
{
"type": "reference",
- "target": 1121,
+ "target": 1122,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1122,
+ "target": 1123,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1123,
+ "target": 1124,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -42472,7 +42511,7 @@
}
},
{
- "id": 1122,
+ "id": 1123,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -42480,13 +42519,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 845,
+ "line": 853,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -42517,7 +42556,7 @@
}
},
{
- "id": 1121,
+ "id": 1122,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -42525,13 +42564,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 840,
+ "line": 848,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "reference",
@@ -42548,7 +42587,7 @@
}
},
{
- "id": 1123,
+ "id": 1124,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -42577,13 +42616,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 860,
+ "line": 868,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -42614,7 +42653,7 @@
}
},
{
- "id": 1107,
+ "id": 1108,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -42622,7 +42661,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 788,
+ "line": 796,
"character": 12
}
],
@@ -42631,19 +42670,19 @@
"types": [
{
"type": "reference",
- "target": 1313,
+ "target": 1314,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1314,
+ "target": 1315,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1315,
+ "target": 1316,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -42651,7 +42690,7 @@
}
},
{
- "id": 1314,
+ "id": 1315,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -42659,13 +42698,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1157,
+ "line": 1165,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -42702,7 +42741,7 @@
}
},
{
- "id": 1313,
+ "id": 1314,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -42710,13 +42749,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1152,
+ "line": 1160,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -42753,7 +42792,7 @@
}
},
{
- "id": 1315,
+ "id": 1316,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -42782,13 +42821,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1164,
+ "line": 1172,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -42825,7 +42864,7 @@
}
},
{
- "id": 1120,
+ "id": 1121,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -42833,7 +42872,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 839,
+ "line": 847,
"character": 12
}
],
@@ -42859,7 +42898,7 @@
}
},
{
- "id": 1108,
+ "id": 1109,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -42867,21 +42906,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 789,
+ "line": 797,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1109,
+ "id": 1110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1110,
+ "id": 1111,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -42897,7 +42936,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 791,
+ "line": 799,
"character": 4
}
],
@@ -42910,13 +42949,13 @@
"groups": [
{
"title": "Properties",
- "children": [1110]
+ "children": [1111]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 789,
+ "line": 797,
"character": 32
}
]
@@ -42924,7 +42963,7 @@
}
},
{
- "id": 1119,
+ "id": 1120,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -42932,7 +42971,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 833,
+ "line": 841,
"character": 12
}
],
@@ -42941,19 +42980,19 @@
"types": [
{
"type": "reference",
- "target": 1111,
+ "target": 1112,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1112,
+ "target": 1113,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1117,
+ "target": 1118,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -42961,7 +43000,7 @@
}
},
{
- "id": 1112,
+ "id": 1113,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -42969,13 +43008,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 805,
+ "line": 813,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -43006,7 +43045,7 @@
}
},
{
- "id": 1111,
+ "id": 1112,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -43014,13 +43053,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 803,
+ "line": 811,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -43051,7 +43090,7 @@
}
},
{
- "id": 1113,
+ "id": 1114,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -43067,13 +43106,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 823,
+ "line": 831,
"character": 12
}
],
"typeParameters": [
{
- "id": 1116,
+ "id": 1117,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -43117,14 +43156,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1114,
+ "id": 1115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1115,
+ "id": 1116,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -43132,7 +43171,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 824,
+ "line": 832,
"character": 4
}
],
@@ -43157,7 +43196,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1116,
+ "target": 1117,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43173,13 +43212,13 @@
"groups": [
{
"title": "Properties",
- "children": [1115]
+ "children": [1116]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 823,
+ "line": 831,
"character": 98
}
]
@@ -43187,7 +43226,7 @@
}
},
{
- "id": 1117,
+ "id": 1118,
"name": "MFAVerifyWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -43216,13 +43255,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 832,
+ "line": 840,
"character": 12
}
],
"typeParameters": [
{
- "id": 1118,
+ "id": 1119,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -43265,7 +43304,7 @@
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -43281,11 +43320,11 @@
},
{
"type": "reference",
- "target": 1113,
+ "target": 1114,
"typeArguments": [
{
"type": "reference",
- "target": 1118,
+ "target": 1119,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43302,7 +43341,7 @@
}
},
{
- "id": 1038,
+ "id": 1039,
"name": "MobileOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -43310,7 +43349,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 673,
+ "line": 681,
"character": 12
}
],
@@ -43329,7 +43368,7 @@
}
},
{
- "id": 1434,
+ "id": 1435,
"name": "OAuthAuthorizationClient",
"variant": "declaration",
"kind": 2097152,
@@ -43345,21 +43384,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1417,
+ "line": 1425,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1435,
+ "id": 1436,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1436,
+ "id": 1437,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -43375,7 +43414,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1419,
+ "line": 1427,
"character": 4
}
],
@@ -43385,7 +43424,7 @@
}
},
{
- "id": 1439,
+ "id": 1440,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -43401,7 +43440,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1425,
+ "line": 1433,
"character": 4
}
],
@@ -43411,7 +43450,7 @@
}
},
{
- "id": 1437,
+ "id": 1438,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -43427,7 +43466,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1421,
+ "line": 1429,
"character": 4
}
],
@@ -43437,7 +43476,7 @@
}
},
{
- "id": 1438,
+ "id": 1439,
"name": "uri",
"variant": "declaration",
"kind": 1024,
@@ -43453,7 +43492,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1423,
+ "line": 1431,
"character": 4
}
],
@@ -43466,13 +43505,13 @@
"groups": [
{
"title": "Properties",
- "children": [1436, 1439, 1437, 1438]
+ "children": [1437, 1440, 1438, 1439]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1417,
+ "line": 1425,
"character": 39
}
]
@@ -43480,7 +43519,7 @@
}
},
{
- "id": 1440,
+ "id": 1441,
"name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
@@ -43512,21 +43551,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1438,
+ "line": 1446,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1441,
+ "id": 1442,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1442,
+ "id": 1443,
"name": "authorization_id",
"variant": "declaration",
"kind": 1024,
@@ -43542,7 +43581,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1440,
+ "line": 1448,
"character": 4
}
],
@@ -43552,7 +43591,7 @@
}
},
{
- "id": 1444,
+ "id": 1445,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -43568,19 +43607,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1444,
+ "line": 1452,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1434,
+ "target": 1435,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1443,
+ "id": 1444,
"name": "redirect_uri",
"variant": "declaration",
"kind": 1024,
@@ -43596,7 +43635,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1442,
+ "line": 1450,
"character": 4
}
],
@@ -43606,7 +43645,7 @@
}
},
{
- "id": 1449,
+ "id": 1450,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -43622,7 +43661,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1453,
+ "line": 1461,
"character": 4
}
],
@@ -43632,7 +43671,7 @@
}
},
{
- "id": 1445,
+ "id": 1446,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -43648,21 +43687,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1446,
+ "line": 1454,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1446,
+ "id": 1447,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1448,
+ "id": 1449,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -43678,7 +43717,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1450,
+ "line": 1458,
"character": 8
}
],
@@ -43688,7 +43727,7 @@
}
},
{
- "id": 1447,
+ "id": 1448,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -43704,7 +43743,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1448,
+ "line": 1456,
"character": 8
}
],
@@ -43717,13 +43756,13 @@
"groups": [
{
"title": "Properties",
- "children": [1448, 1447]
+ "children": [1449, 1448]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1446,
+ "line": 1454,
"character": 10
}
]
@@ -43734,13 +43773,13 @@
"groups": [
{
"title": "Properties",
- "children": [1442, 1444, 1443, 1449, 1445]
+ "children": [1443, 1445, 1444, 1450, 1446]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1438,
+ "line": 1446,
"character": 40
}
]
@@ -43748,7 +43787,7 @@
}
},
{
- "id": 1367,
+ "id": 1368,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -43764,21 +43803,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1276,
+ "line": 1284,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1368,
+ "id": 1369,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1369,
+ "id": 1370,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -43794,7 +43833,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1278,
+ "line": 1286,
"character": 4
}
],
@@ -43804,7 +43843,7 @@
}
},
{
- "id": 1370,
+ "id": 1371,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -43820,7 +43859,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1280,
+ "line": 1288,
"character": 4
}
],
@@ -43830,7 +43869,7 @@
}
},
{
- "id": 1371,
+ "id": 1372,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -43848,7 +43887,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1282,
+ "line": 1290,
"character": 4
}
],
@@ -43858,7 +43897,7 @@
}
},
{
- "id": 1372,
+ "id": 1373,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -43874,19 +43913,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1284,
+ "line": 1292,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1365,
+ "target": 1366,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1375,
+ "id": 1376,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -43904,7 +43943,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1290,
+ "line": 1298,
"character": 4
}
],
@@ -43914,7 +43953,7 @@
}
},
{
- "id": 1381,
+ "id": 1382,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -43930,7 +43969,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1302,
+ "line": 1310,
"character": 4
}
],
@@ -43940,7 +43979,7 @@
}
},
{
- "id": 1378,
+ "id": 1379,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -43956,7 +43995,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1296,
+ "line": 1304,
"character": 4
}
],
@@ -43964,14 +44003,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1363,
+ "target": 1364,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1376,
+ "id": 1377,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -43989,7 +44028,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1292,
+ "line": 1300,
"character": 4
}
],
@@ -43999,7 +44038,7 @@
}
},
{
- "id": 1377,
+ "id": 1378,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -44015,7 +44054,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1294,
+ "line": 1302,
"character": 4
}
],
@@ -44028,7 +44067,7 @@
}
},
{
- "id": 1374,
+ "id": 1375,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -44044,19 +44083,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1288,
+ "line": 1296,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1366,
+ "target": 1367,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1379,
+ "id": 1380,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -44072,7 +44111,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1298,
+ "line": 1306,
"character": 4
}
],
@@ -44080,14 +44119,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1364,
+ "target": 1365,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1380,
+ "id": 1381,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -44105,7 +44144,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1300,
+ "line": 1308,
"character": 4
}
],
@@ -44115,7 +44154,7 @@
}
},
{
- "id": 1373,
+ "id": 1374,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -44131,7 +44170,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1286,
+ "line": 1294,
"character": 4
}
],
@@ -44141,7 +44180,7 @@
}
},
{
- "id": 1382,
+ "id": 1383,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -44157,7 +44196,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1304,
+ "line": 1312,
"character": 4
}
],
@@ -44171,15 +44210,15 @@
{
"title": "Properties",
"children": [
- 1369, 1370, 1371, 1372, 1375, 1381, 1378, 1376, 1377, 1374, 1379, 1380, 1373,
- 1382
+ 1370, 1371, 1372, 1373, 1376, 1382, 1379, 1377, 1378, 1375, 1380, 1381, 1374,
+ 1383
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1276,
+ "line": 1284,
"character": 26
}
]
@@ -44187,7 +44226,7 @@
}
},
{
- "id": 1363,
+ "id": 1364,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -44203,7 +44242,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1256,
+ "line": 1264,
"character": 12
}
],
@@ -44222,7 +44261,7 @@
}
},
{
- "id": 1399,
+ "id": 1400,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -44238,7 +44277,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1350,
+ "line": 1358,
"character": 12
}
],
@@ -44248,14 +44287,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1400,
+ "id": 1401,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1401,
+ "id": 1402,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -44263,7 +44302,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1351,
+ "line": 1359,
"character": 4
}
],
@@ -44273,14 +44312,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1402,
+ "id": 1403,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1404,
+ "id": 1405,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -44288,7 +44327,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1353,
+ "line": 1361,
"character": 8
}
],
@@ -44298,7 +44337,7 @@
}
},
{
- "id": 1403,
+ "id": 1404,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -44306,7 +44345,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1352,
+ "line": 1360,
"character": 8
}
],
@@ -44314,7 +44353,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1367,
+ "target": 1368,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -44324,13 +44363,13 @@
"groups": [
{
"title": "Properties",
- "children": [1404, 1403]
+ "children": [1405, 1404]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1351,
+ "line": 1359,
"character": 10
}
]
@@ -44338,7 +44377,7 @@
},
{
"type": "reference",
- "target": 1299,
+ "target": 1300,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -44346,7 +44385,7 @@
}
},
{
- "id": 1405,
+ "id": 1406,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -44354,7 +44393,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1355,
+ "line": 1363,
"character": 4
}
],
@@ -44367,13 +44406,13 @@
"groups": [
{
"title": "Properties",
- "children": [1401, 1405]
+ "children": [1402, 1406]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1350,
+ "line": 1358,
"character": 38
}
]
@@ -44382,14 +44421,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1406,
+ "id": 1407,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1407,
+ "id": 1408,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -44397,21 +44436,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1357,
+ "line": 1365,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1408,
+ "id": 1409,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1409,
+ "id": 1410,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -44419,7 +44458,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1358,
+ "line": 1366,
"character": 8
}
],
@@ -44431,13 +44470,13 @@
"groups": [
{
"title": "Properties",
- "children": [1409]
+ "children": [1410]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1357,
+ "line": 1365,
"character": 10
}
]
@@ -44445,7 +44484,7 @@
}
},
{
- "id": 1410,
+ "id": 1411,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -44453,13 +44492,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1360,
+ "line": 1368,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -44468,13 +44507,13 @@
"groups": [
{
"title": "Properties",
- "children": [1407, 1410]
+ "children": [1408, 1411]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1356,
+ "line": 1364,
"character": 4
}
]
@@ -44484,7 +44523,7 @@
}
},
{
- "id": 1366,
+ "id": 1367,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -44500,7 +44539,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1271,
+ "line": 1279,
"character": 12
}
],
@@ -44519,7 +44558,7 @@
}
},
{
- "id": 1398,
+ "id": 1399,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -44535,17 +44574,17 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1345,
+ "line": 1353,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reference",
- "target": 1367,
+ "target": 1368,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -44555,7 +44594,7 @@
}
},
{
- "id": 1364,
+ "id": 1365,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -44571,7 +44610,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1261,
+ "line": 1269,
"character": 12
}
],
@@ -44581,7 +44620,7 @@
}
},
{
- "id": 1365,
+ "id": 1366,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -44597,7 +44636,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1266,
+ "line": 1274,
"character": 12
}
],
@@ -44616,7 +44655,7 @@
}
},
{
- "id": 1455,
+ "id": 1456,
"name": "OAuthGrant",
"variant": "declaration",
"kind": 2097152,
@@ -44632,21 +44671,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1504,
+ "line": 1512,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1456,
+ "id": 1457,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1457,
+ "id": 1458,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -44662,19 +44701,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1506,
+ "line": 1514,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1434,
+ "target": 1435,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1459,
+ "id": 1460,
"name": "granted_at",
"variant": "declaration",
"kind": 1024,
@@ -44690,7 +44729,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1510,
+ "line": 1518,
"character": 4
}
],
@@ -44700,7 +44739,7 @@
}
},
{
- "id": 1458,
+ "id": 1459,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -44716,7 +44755,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1508,
+ "line": 1516,
"character": 4
}
],
@@ -44732,13 +44771,13 @@
"groups": [
{
"title": "Properties",
- "children": [1457, 1459, 1458]
+ "children": [1458, 1460, 1459]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1504,
+ "line": 1512,
"character": 25
}
]
@@ -44746,7 +44785,7 @@
}
},
{
- "id": 1450,
+ "id": 1451,
"name": "OAuthRedirect",
"variant": "declaration",
"kind": 2097152,
@@ -44770,21 +44809,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1468,
+ "line": 1476,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1451,
+ "id": 1452,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1452,
+ "id": 1453,
"name": "redirect_url",
"variant": "declaration",
"kind": 1024,
@@ -44800,7 +44839,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1470,
+ "line": 1478,
"character": 4
}
],
@@ -44813,13 +44852,13 @@
"groups": [
{
"title": "Properties",
- "children": [1452]
+ "children": [1453]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1468,
+ "line": 1476,
"character": 28
}
]
@@ -44827,7 +44866,7 @@
}
},
{
- "id": 820,
+ "id": 821,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -44835,7 +44874,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 197,
+ "line": 205,
"character": 12
}
],
@@ -44845,14 +44884,14 @@
{
"type": "reflection",
"declaration": {
- "id": 821,
+ "id": 822,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 822,
+ "id": 823,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -44860,21 +44899,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 198,
+ "line": 206,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 823,
+ "id": 824,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 824,
+ "id": 825,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -44882,7 +44921,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 199,
+ "line": 207,
"character": 8
}
],
@@ -44894,7 +44933,7 @@
}
},
{
- "id": 825,
+ "id": 826,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -44902,7 +44941,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 200,
+ "line": 208,
"character": 8
}
],
@@ -44915,13 +44954,13 @@
"groups": [
{
"title": "Properties",
- "children": [824, 825]
+ "children": [825, 826]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 198,
+ "line": 206,
"character": 10
}
]
@@ -44929,7 +44968,7 @@
}
},
{
- "id": 826,
+ "id": 827,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -44937,7 +44976,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 202,
+ "line": 210,
"character": 4
}
],
@@ -44950,13 +44989,13 @@
"groups": [
{
"title": "Properties",
- "children": [822, 826]
+ "children": [823, 827]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 197,
+ "line": 205,
"character": 28
}
]
@@ -44965,14 +45004,14 @@
{
"type": "reflection",
"declaration": {
- "id": 827,
+ "id": 828,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 828,
+ "id": 829,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -44980,21 +45019,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 204,
+ "line": 212,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 829,
+ "id": 830,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 830,
+ "id": 831,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -45002,7 +45041,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 205,
+ "line": 213,
"character": 8
}
],
@@ -45014,7 +45053,7 @@
}
},
{
- "id": 831,
+ "id": 832,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -45022,7 +45061,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 206,
+ "line": 214,
"character": 8
}
],
@@ -45035,13 +45074,13 @@
"groups": [
{
"title": "Properties",
- "children": [830, 831]
+ "children": [831, 832]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 204,
+ "line": 212,
"character": 10
}
]
@@ -45049,7 +45088,7 @@
}
},
{
- "id": 832,
+ "id": 833,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -45057,13 +45096,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 208,
+ "line": 216,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -45072,13 +45111,13 @@
"groups": [
{
"title": "Properties",
- "children": [828, 832]
+ "children": [829, 833]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 203,
+ "line": 211,
"character": 4
}
]
@@ -45088,7 +45127,7 @@
}
},
{
- "id": 1306,
+ "id": 1307,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -45096,21 +45135,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1123,
+ "line": 1131,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1307,
+ "id": 1308,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1308,
+ "id": 1309,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -45128,7 +45167,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1125,
+ "line": 1133,
"character": 4
}
],
@@ -45138,7 +45177,7 @@
}
},
{
- "id": 1309,
+ "id": 1310,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -45156,7 +45195,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1127,
+ "line": 1135,
"character": 4
}
],
@@ -45169,13 +45208,13 @@
"groups": [
{
"title": "Properties",
- "children": [1308, 1309]
+ "children": [1309, 1310]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1123,
+ "line": 1131,
"character": 25
}
]
@@ -45183,7 +45222,7 @@
}
},
{
- "id": 1299,
+ "id": 1300,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -45191,21 +45230,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1117,
+ "line": 1125,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1300,
+ "id": 1301,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1302,
+ "id": 1303,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -45213,7 +45252,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1120,
+ "line": 1128,
"character": 4
}
],
@@ -45223,7 +45262,7 @@
}
},
{
- "id": 1301,
+ "id": 1302,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -45231,7 +45270,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1119,
+ "line": 1127,
"character": 4
}
],
@@ -45250,7 +45289,7 @@
}
},
{
- "id": 1303,
+ "id": 1304,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -45258,7 +45297,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1121,
+ "line": 1129,
"character": 4
}
],
@@ -45271,19 +45310,19 @@
"groups": [
{
"title": "Properties",
- "children": [1302, 1301, 1303]
+ "children": [1303, 1302, 1304]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1117,
+ "line": 1125,
"character": 25
}
],
"indexSignatures": [
{
- "id": 1304,
+ "id": 1305,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45291,13 +45330,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1118,
+ "line": 1126,
"character": 4
}
],
"parameters": [
{
- "id": 1305,
+ "id": 1306,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45461,7 +45500,7 @@
}
},
{
- "id": 775,
+ "id": 776,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -45477,13 +45516,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 12
}
],
"typeParameters": [
{
- "id": 776,
+ "id": 777,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45494,7 +45533,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 776,
+ "target": 777,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -45510,7 +45549,7 @@
},
"trueType": {
"type": "reference",
- "target": 776,
+ "target": 777,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -45523,7 +45562,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 776,
+ "target": 777,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -45543,7 +45582,7 @@
},
"objectType": {
"type": "reference",
- "target": 776,
+ "target": 777,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -45717,7 +45756,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 161,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L161"
}
],
"typeParameters": [
@@ -45765,7 +45804,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 161,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L161"
}
],
"type": {
@@ -45785,7 +45824,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 161,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L161"
}
]
}
@@ -45836,7 +45875,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 162,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L162"
}
],
"type": {
@@ -45865,7 +45904,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 160,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L160"
}
],
"typeParameters": [
@@ -45918,7 +45957,7 @@
}
},
{
- "id": 1989,
+ "id": 1990,
"name": "RealtimeChannelOptions",
"variant": "declaration",
"kind": 2097152,
@@ -45933,14 +45972,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1990,
+ "id": 1991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1991,
+ "id": 1992,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -45955,14 +45994,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1992,
+ "id": 1993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1993,
+ "id": 1994,
"name": "broadcast",
"variant": "declaration",
"kind": 1024,
@@ -45987,14 +46026,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1994,
+ "id": 1995,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1996,
+ "id": 1997,
"name": "ack",
"variant": "declaration",
"kind": 1024,
@@ -46014,7 +46053,7 @@
}
},
{
- "id": 1997,
+ "id": 1998,
"name": "replay",
"variant": "declaration",
"kind": 1024,
@@ -46039,7 +46078,7 @@
}
},
{
- "id": 1995,
+ "id": 1996,
"name": "self",
"variant": "declaration",
"kind": 1024,
@@ -46062,7 +46101,7 @@
"groups": [
{
"title": "Properties",
- "children": [1996, 1997, 1995]
+ "children": [1997, 1998, 1996]
}
],
"sources": [
@@ -46076,7 +46115,7 @@
}
},
{
- "id": 1998,
+ "id": 1999,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -46101,14 +46140,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1999,
+ "id": 2000,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2001,
+ "id": 2002,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -46128,7 +46167,7 @@
}
},
{
- "id": 2000,
+ "id": 2001,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -46151,7 +46190,7 @@
"groups": [
{
"title": "Properties",
- "children": [2001, 2000]
+ "children": [2002, 2001]
}
],
"sources": [
@@ -46165,7 +46204,7 @@
}
},
{
- "id": 2002,
+ "id": 2003,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -46196,7 +46235,7 @@
"groups": [
{
"title": "Properties",
- "children": [1993, 1998, 2002]
+ "children": [1994, 1999, 2003]
}
],
"sources": [
@@ -46213,7 +46252,7 @@
"groups": [
{
"title": "Properties",
- "children": [1991]
+ "children": [1992]
}
],
"sources": [
@@ -46227,7 +46266,7 @@
}
},
{
- "id": 2003,
+ "id": 2004,
"name": "RealtimeChannelSendResponse",
"variant": "declaration",
"kind": 2097152,
@@ -46258,7 +46297,7 @@
}
},
{
- "id": 2118,
+ "id": 2119,
"name": "RealtimeClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -46273,14 +46312,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2119,
+ "id": 2120,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2146,
+ "id": 2147,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -46297,7 +46336,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2147,
+ "id": 2148,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46311,7 +46350,7 @@
],
"signatures": [
{
- "id": 2148,
+ "id": 2149,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -46346,7 +46385,7 @@
}
},
{
- "id": 2131,
+ "id": 2132,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -46371,7 +46410,7 @@
}
},
{
- "id": 2130,
+ "id": 2131,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -46396,7 +46435,7 @@
}
},
{
- "id": 2143,
+ "id": 2144,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -46421,7 +46460,7 @@
}
},
{
- "id": 2133,
+ "id": 2134,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -46438,7 +46477,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2134,
+ "id": 2135,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46452,7 +46491,7 @@
],
"indexSignatures": [
{
- "id": 2135,
+ "id": 2136,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46466,7 +46505,7 @@
],
"parameters": [
{
- "id": 2136,
+ "id": 2137,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46487,7 +46526,7 @@
}
},
{
- "id": 2123,
+ "id": 2124,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -46504,7 +46543,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2124,
+ "id": 2125,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46518,14 +46557,14 @@
],
"signatures": [
{
- "id": 2125,
+ "id": 2126,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 2126,
+ "id": 2127,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -46541,7 +46580,7 @@
}
},
{
- "id": 2127,
+ "id": 2128,
"name": "latency",
"variant": "param",
"kind": 32768,
@@ -46564,7 +46603,7 @@
}
},
{
- "id": 2122,
+ "id": 2123,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -46584,7 +46623,7 @@
}
},
{
- "id": 2141,
+ "id": 2142,
"name": "log_level",
"variant": "declaration",
"kind": 1024,
@@ -46609,7 +46648,7 @@
}
},
{
- "id": 2129,
+ "id": 2130,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -46634,7 +46673,7 @@
}
},
{
- "id": 2142,
+ "id": 2143,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -46659,7 +46698,7 @@
}
},
{
- "id": 2137,
+ "id": 2138,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -46676,7 +46715,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2138,
+ "id": 2139,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46690,7 +46729,7 @@
],
"indexSignatures": [
{
- "id": 2139,
+ "id": 2140,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46704,7 +46743,7 @@
],
"parameters": [
{
- "id": 2140,
+ "id": 2141,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46725,7 +46764,7 @@
}
},
{
- "id": 2132,
+ "id": 2133,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -46750,7 +46789,7 @@
}
},
{
- "id": 2121,
+ "id": 2122,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -46770,7 +46809,7 @@
}
},
{
- "id": 2120,
+ "id": 2121,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -46786,13 +46825,13 @@
],
"type": {
"type": "reference",
- "target": 2313,
+ "target": 2314,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
},
{
- "id": 2128,
+ "id": 2129,
"name": "vsn",
"variant": "declaration",
"kind": 1024,
@@ -46812,7 +46851,7 @@
}
},
{
- "id": 2144,
+ "id": 2145,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -46832,7 +46871,7 @@
}
},
{
- "id": 2145,
+ "id": 2146,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -46856,8 +46895,8 @@
{
"title": "Properties",
"children": [
- 2146, 2131, 2130, 2143, 2133, 2123, 2122, 2141, 2129, 2142, 2137, 2132, 2121,
- 2120, 2128, 2144, 2145
+ 2147, 2132, 2131, 2144, 2134, 2124, 2123, 2142, 2130, 2143, 2138, 2133, 2122,
+ 2121, 2129, 2145, 2146
]
}
],
@@ -46872,7 +46911,7 @@
}
},
{
- "id": 2149,
+ "id": 2150,
"name": "RealtimeMessage",
"variant": "declaration",
"kind": 2097152,
@@ -46887,14 +46926,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2150,
+ "id": 2151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2152,
+ "id": 2153,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -46912,7 +46951,7 @@
}
},
{
- "id": 2155,
+ "id": 2156,
"name": "join_ref",
"variant": "declaration",
"kind": 1024,
@@ -46932,7 +46971,7 @@
}
},
{
- "id": 2153,
+ "id": 2154,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -46950,7 +46989,7 @@
}
},
{
- "id": 2154,
+ "id": 2155,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -46968,7 +47007,7 @@
}
},
{
- "id": 2151,
+ "id": 2152,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -46989,7 +47028,7 @@
"groups": [
{
"title": "Properties",
- "children": [2152, 2155, 2153, 2154, 2151]
+ "children": [2153, 2156, 2154, 2155, 2152]
}
],
"sources": [
@@ -47003,7 +47042,7 @@
}
},
{
- "id": 2156,
+ "id": 2157,
"name": "RealtimePostgresChangesFilter",
"variant": "declaration",
"kind": 2097152,
@@ -47017,7 +47056,7 @@
],
"typeParameters": [
{
- "id": 2162,
+ "id": 2163,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47029,7 +47068,7 @@
[
{
"type": "reference",
- "target": 2232,
+ "target": 2233,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"package": "@supabase/realtime-js"
},
@@ -47042,14 +47081,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2157,
+ "id": 2158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2158,
+ "id": 2159,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -47071,14 +47110,14 @@
],
"type": {
"type": "reference",
- "target": 2162,
+ "target": 2163,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2161,
+ "id": 2162,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -47106,7 +47145,7 @@
}
},
{
- "id": 2159,
+ "id": 2160,
"name": "schema",
"variant": "declaration",
"kind": 1024,
@@ -47132,7 +47171,7 @@
}
},
{
- "id": 2160,
+ "id": 2161,
"name": "table",
"variant": "declaration",
"kind": 1024,
@@ -47163,7 +47202,7 @@
"groups": [
{
"title": "Properties",
- "children": [2158, 2161, 2159, 2160]
+ "children": [2159, 2162, 2160, 2161]
}
],
"sources": [
@@ -47177,7 +47216,7 @@
}
},
{
- "id": 2163,
+ "id": 2164,
"name": "RealtimePostgresChangesPayload",
"variant": "declaration",
"kind": 2097152,
@@ -47191,7 +47230,7 @@
],
"typeParameters": [
{
- "id": 2164,
+ "id": 2165,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47199,7 +47238,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2165,
+ "id": 2166,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47213,7 +47252,7 @@
],
"indexSignatures": [
{
- "id": 2166,
+ "id": 2167,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -47227,7 +47266,7 @@
],
"parameters": [
{
- "id": 2167,
+ "id": 2168,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -47253,11 +47292,11 @@
"types": [
{
"type": "reference",
- "target": 2168,
+ "target": 2169,
"typeArguments": [
{
"type": "reference",
- "target": 2164,
+ "target": 2165,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -47268,11 +47307,11 @@
},
{
"type": "reference",
- "target": 2178,
+ "target": 2179,
"typeArguments": [
{
"type": "reference",
- "target": 2164,
+ "target": 2165,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -47283,11 +47322,11 @@
},
{
"type": "reference",
- "target": 2187,
+ "target": 2188,
"typeArguments": [
{
"type": "reference",
- "target": 2164,
+ "target": 2165,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -47300,7 +47339,7 @@
}
},
{
- "id": 2187,
+ "id": 2188,
"name": "RealtimePostgresDeletePayload",
"variant": "declaration",
"kind": 2097152,
@@ -47314,7 +47353,7 @@
],
"typeParameters": [
{
- "id": 2193,
+ "id": 2194,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47322,7 +47361,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2194,
+ "id": 2195,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47336,7 +47375,7 @@
],
"indexSignatures": [
{
- "id": 2195,
+ "id": 2196,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -47350,7 +47389,7 @@
],
"parameters": [
{
- "id": 2196,
+ "id": 2197,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -47386,14 +47425,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2188,
+ "id": 2189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2189,
+ "id": 2190,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -47412,7 +47451,7 @@
[
{
"type": "reference",
- "target": 2236,
+ "target": 2237,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE",
"package": "@supabase/realtime-js"
},
@@ -47422,7 +47461,7 @@
}
},
{
- "id": 2190,
+ "id": 2191,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -47437,7 +47476,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2191,
+ "id": 2192,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47453,7 +47492,7 @@
}
},
{
- "id": 2192,
+ "id": 2193,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -47474,7 +47513,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2193,
+ "target": 2194,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -47488,7 +47527,7 @@
"groups": [
{
"title": "Properties",
- "children": [2189, 2190, 2192]
+ "children": [2190, 2191, 2193]
}
],
"sources": [
@@ -47504,7 +47543,7 @@
}
},
{
- "id": 2168,
+ "id": 2169,
"name": "RealtimePostgresInsertPayload",
"variant": "declaration",
"kind": 2097152,
@@ -47518,7 +47557,7 @@
],
"typeParameters": [
{
- "id": 2174,
+ "id": 2175,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47526,7 +47565,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2175,
+ "id": 2176,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47540,7 +47579,7 @@
],
"indexSignatures": [
{
- "id": 2176,
+ "id": 2177,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -47554,7 +47593,7 @@
],
"parameters": [
{
- "id": 2177,
+ "id": 2178,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -47590,14 +47629,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2169,
+ "id": 2170,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2170,
+ "id": 2171,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -47616,7 +47655,7 @@
[
{
"type": "reference",
- "target": 2234,
+ "target": 2235,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT",
"package": "@supabase/realtime-js"
},
@@ -47626,7 +47665,7 @@
}
},
{
- "id": 2171,
+ "id": 2172,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -47640,14 +47679,14 @@
],
"type": {
"type": "reference",
- "target": 2174,
+ "target": 2175,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2172,
+ "id": 2173,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -47662,7 +47701,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2173,
+ "id": 2174,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47681,7 +47720,7 @@
"groups": [
{
"title": "Properties",
- "children": [2170, 2171, 2172]
+ "children": [2171, 2172, 2173]
}
],
"sources": [
@@ -47697,7 +47736,7 @@
}
},
{
- "id": 2178,
+ "id": 2179,
"name": "RealtimePostgresUpdatePayload",
"variant": "declaration",
"kind": 2097152,
@@ -47711,7 +47750,7 @@
],
"typeParameters": [
{
- "id": 2183,
+ "id": 2184,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47719,7 +47758,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2184,
+ "id": 2185,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47733,7 +47772,7 @@
],
"indexSignatures": [
{
- "id": 2185,
+ "id": 2186,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -47747,7 +47786,7 @@
],
"parameters": [
{
- "id": 2186,
+ "id": 2187,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -47783,14 +47822,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2179,
+ "id": 2180,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2180,
+ "id": 2181,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -47809,7 +47848,7 @@
[
{
"type": "reference",
- "target": 2235,
+ "target": 2236,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE",
"package": "@supabase/realtime-js"
},
@@ -47819,7 +47858,7 @@
}
},
{
- "id": 2181,
+ "id": 2182,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -47833,14 +47872,14 @@
],
"type": {
"type": "reference",
- "target": 2183,
+ "target": 2184,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2182,
+ "id": 2183,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -47861,7 +47900,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2183,
+ "target": 2184,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -47875,7 +47914,7 @@
"groups": [
{
"title": "Properties",
- "children": [2180, 2181, 2182]
+ "children": [2181, 2182, 2183]
}
],
"sources": [
@@ -47891,7 +47930,7 @@
}
},
{
- "id": 2197,
+ "id": 2198,
"name": "RealtimePresenceJoinPayload",
"variant": "declaration",
"kind": 2097152,
@@ -47905,7 +47944,7 @@
],
"typeParameters": [
{
- "id": 2203,
+ "id": 2204,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -47913,7 +47952,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2204,
+ "id": 2205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -47927,7 +47966,7 @@
],
"indexSignatures": [
{
- "id": 2205,
+ "id": 2206,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -47941,7 +47980,7 @@
],
"parameters": [
{
- "id": 2206,
+ "id": 2207,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -47965,14 +48004,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2198,
+ "id": 2199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2201,
+ "id": 2202,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -47995,7 +48034,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2203,
+ "target": 2204,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -48007,7 +48046,7 @@
}
},
{
- "id": 2199,
+ "id": 2200,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -48026,7 +48065,7 @@
[
{
"type": "reference",
- "target": 2239,
+ "target": 2240,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN",
"package": "@supabase/realtime-js"
},
@@ -48036,7 +48075,7 @@
}
},
{
- "id": 2200,
+ "id": 2201,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -48054,7 +48093,7 @@
}
},
{
- "id": 2202,
+ "id": 2203,
"name": "newPresences",
"variant": "declaration",
"kind": 1024,
@@ -48077,7 +48116,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2203,
+ "target": 2204,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -48092,7 +48131,7 @@
"groups": [
{
"title": "Properties",
- "children": [2201, 2199, 2200, 2202]
+ "children": [2202, 2200, 2201, 2203]
}
],
"sources": [
@@ -48106,7 +48145,7 @@
}
},
{
- "id": 2207,
+ "id": 2208,
"name": "RealtimePresenceLeavePayload",
"variant": "declaration",
"kind": 2097152,
@@ -48120,7 +48159,7 @@
],
"typeParameters": [
{
- "id": 2213,
+ "id": 2214,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -48128,7 +48167,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2214,
+ "id": 2215,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48142,7 +48181,7 @@
],
"indexSignatures": [
{
- "id": 2215,
+ "id": 2216,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -48156,7 +48195,7 @@
],
"parameters": [
{
- "id": 2216,
+ "id": 2217,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -48180,14 +48219,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2208,
+ "id": 2209,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2211,
+ "id": 2212,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -48210,7 +48249,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2213,
+ "target": 2214,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -48222,7 +48261,7 @@
}
},
{
- "id": 2209,
+ "id": 2210,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -48241,7 +48280,7 @@
[
{
"type": "reference",
- "target": 2240,
+ "target": 2241,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE",
"package": "@supabase/realtime-js"
},
@@ -48251,7 +48290,7 @@
}
},
{
- "id": 2210,
+ "id": 2211,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -48269,7 +48308,7 @@
}
},
{
- "id": 2212,
+ "id": 2213,
"name": "leftPresences",
"variant": "declaration",
"kind": 1024,
@@ -48292,7 +48331,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2213,
+ "target": 2214,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -48307,7 +48346,7 @@
"groups": [
{
"title": "Properties",
- "children": [2211, 2209, 2210, 2212]
+ "children": [2212, 2210, 2211, 2213]
}
],
"sources": [
@@ -48321,7 +48360,7 @@
}
},
{
- "id": 2217,
+ "id": 2218,
"name": "RealtimePresenceState",
"variant": "declaration",
"kind": 2097152,
@@ -48335,7 +48374,7 @@
],
"typeParameters": [
{
- "id": 2221,
+ "id": 2222,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -48343,7 +48382,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2222,
+ "id": 2223,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48357,7 +48396,7 @@
],
"indexSignatures": [
{
- "id": 2223,
+ "id": 2224,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -48371,7 +48410,7 @@
],
"parameters": [
{
- "id": 2224,
+ "id": 2225,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -48393,7 +48432,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 2225,
+ "id": 2226,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48412,7 +48451,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2218,
+ "id": 2219,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48426,7 +48465,7 @@
],
"indexSignatures": [
{
- "id": 2219,
+ "id": 2220,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -48440,7 +48479,7 @@
],
"parameters": [
{
- "id": 2220,
+ "id": 2221,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -48462,7 +48501,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2221,
+ "target": 2222,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -48478,7 +48517,7 @@
}
},
{
- "id": 2226,
+ "id": 2227,
"name": "RealtimeRemoveChannelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -48509,7 +48548,7 @@
}
},
{
- "id": 780,
+ "id": 781,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -48525,20 +48564,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 149,
+ "line": 157,
"character": 12
}
],
"typeParameters": [
{
- "id": 787,
+ "id": 788,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 788,
+ "id": 789,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -48554,7 +48593,7 @@
},
"default": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -48566,14 +48605,14 @@
{
"type": "reflection",
"declaration": {
- "id": 781,
+ "id": 782,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 782,
+ "id": 783,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48581,20 +48620,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 150,
+ "line": 158,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 787,
+ "target": 788,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 783,
+ "id": 784,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -48602,7 +48641,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 151,
+ "line": 159,
"character": 4
}
],
@@ -48615,13 +48654,13 @@
"groups": [
{
"title": "Properties",
- "children": [782, 783]
+ "children": [783, 784]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 149,
+ "line": 157,
"character": 68
}
]
@@ -48630,14 +48669,14 @@
{
"type": "reflection",
"declaration": {
- "id": 784,
+ "id": 785,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 785,
+ "id": 786,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48645,7 +48684,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 153,
+ "line": 161,
"character": 4
}
],
@@ -48655,7 +48694,7 @@
}
},
{
- "id": 786,
+ "id": 787,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -48663,7 +48702,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 154,
+ "line": 162,
"character": 4
}
],
@@ -48680,19 +48719,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 788,
+ "target": 789,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -48703,13 +48742,13 @@
"groups": [
{
"title": "Properties",
- "children": [785, 786]
+ "children": [786, 787]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 152,
+ "line": 160,
"character": 4
}
]
@@ -48719,7 +48758,7 @@
}
},
{
- "id": 789,
+ "id": 790,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -48740,13 +48779,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 160,
+ "line": 168,
"character": 12
}
],
"typeParameters": [
{
- "id": 796,
+ "id": 797,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -48759,14 +48798,14 @@
{
"type": "reflection",
"declaration": {
- "id": 790,
+ "id": 791,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 791,
+ "id": 792,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48774,20 +48813,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 161,
+ "line": 169,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 796,
+ "target": 797,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 792,
+ "id": 793,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -48795,7 +48834,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 162,
+ "line": 170,
"character": 4
}
],
@@ -48808,13 +48847,13 @@
"groups": [
{
"title": "Properties",
- "children": [791, 792]
+ "children": [792, 793]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 160,
+ "line": 168,
"character": 46
}
]
@@ -48823,14 +48862,14 @@
{
"type": "reflection",
"declaration": {
- "id": 793,
+ "id": 794,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 794,
+ "id": 795,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48838,7 +48877,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 164,
+ "line": 172,
"character": 4
}
],
@@ -48846,7 +48885,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 796,
+ "target": 797,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -48863,7 +48902,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 796,
+ "target": 797,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -48881,7 +48920,7 @@
}
},
{
- "id": 795,
+ "id": 796,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -48889,13 +48928,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 167,
+ "line": 175,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -48904,13 +48943,13 @@
"groups": [
{
"title": "Properties",
- "children": [794, 795]
+ "children": [795, 796]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 163,
+ "line": 171,
"character": 4
}
]
@@ -48920,7 +48959,7 @@
}
},
{
- "id": 1324,
+ "id": 1325,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -48928,21 +48967,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1207,
+ "line": 1215,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1325,
+ "id": 1326,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1332,
+ "id": 1333,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -48950,19 +48989,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1214,
+ "line": 1222,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1148,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1328,
+ "id": 1329,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -48970,7 +49009,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1210,
+ "line": 1218,
"character": 4
}
],
@@ -48992,7 +49031,7 @@
}
},
{
- "id": 1329,
+ "id": 1330,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -49000,7 +49039,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1211,
+ "line": 1219,
"character": 4
}
],
@@ -49010,7 +49049,7 @@
}
},
{
- "id": 1330,
+ "id": 1331,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -49018,7 +49057,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1212,
+ "line": 1220,
"character": 4
}
],
@@ -49028,7 +49067,7 @@
}
},
{
- "id": 1326,
+ "id": 1327,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -49036,7 +49075,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1208,
+ "line": 1216,
"character": 4
}
],
@@ -49046,7 +49085,7 @@
}
},
{
- "id": 1331,
+ "id": 1332,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -49054,7 +49093,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1213,
+ "line": 1221,
"character": 4
}
],
@@ -49064,7 +49103,7 @@
}
},
{
- "id": 1333,
+ "id": 1334,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -49072,7 +49111,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1215,
+ "line": 1223,
"character": 4
}
],
@@ -49082,7 +49121,7 @@
}
},
{
- "id": 1327,
+ "id": 1328,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -49090,7 +49129,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1209,
+ "line": 1217,
"character": 4
}
],
@@ -49103,13 +49142,13 @@
"groups": [
{
"title": "Properties",
- "children": [1332, 1328, 1329, 1330, 1326, 1331, 1333, 1327]
+ "children": [1333, 1329, 1330, 1331, 1327, 1332, 1334, 1328]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1207,
+ "line": 1215,
"character": 29
}
]
@@ -49118,13 +49157,13 @@
"extendedBy": [
{
"type": "reference",
- "target": 1334,
+ "target": 1335,
"name": "JwtPayload"
}
]
},
{
- "id": 1040,
+ "id": 1041,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -49132,7 +49171,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 675,
+ "line": 683,
"character": 12
}
],
@@ -49142,14 +49181,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1041,
+ "id": 1042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1043,
+ "id": 1044,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -49157,7 +49196,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 677,
+ "line": 685,
"character": 4
}
],
@@ -49167,7 +49206,7 @@
}
},
{
- "id": 1044,
+ "id": 1045,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49177,21 +49216,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 678,
+ "line": 686,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1045,
+ "id": 1046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1047,
+ "id": 1048,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49209,7 +49248,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 682,
+ "line": 690,
"character": 8
}
],
@@ -49219,7 +49258,7 @@
}
},
{
- "id": 1046,
+ "id": 1047,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -49237,7 +49276,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 680,
+ "line": 688,
"character": 8
}
],
@@ -49250,13 +49289,13 @@
"groups": [
{
"title": "Properties",
- "children": [1047, 1046]
+ "children": [1048, 1047]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 678,
+ "line": 686,
"character": 14
}
]
@@ -49264,7 +49303,7 @@
}
},
{
- "id": 1042,
+ "id": 1043,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -49272,7 +49311,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 676,
+ "line": 684,
"character": 4
}
],
@@ -49285,7 +49324,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1039,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -49311,13 +49350,13 @@
"groups": [
{
"title": "Properties",
- "children": [1043, 1044, 1042]
+ "children": [1044, 1045, 1043]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 675,
+ "line": 683,
"character": 27
}
]
@@ -49326,14 +49365,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1048,
+ "id": 1049,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1051,
+ "id": 1052,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49343,21 +49382,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 687,
+ "line": 695,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1052,
+ "id": 1053,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1053,
+ "id": 1054,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49375,7 +49414,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 689,
+ "line": 697,
"character": 8
}
],
@@ -49388,13 +49427,13 @@
"groups": [
{
"title": "Properties",
- "children": [1053]
+ "children": [1054]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 687,
+ "line": 695,
"character": 14
}
]
@@ -49402,7 +49441,7 @@
}
},
{
- "id": 1050,
+ "id": 1051,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -49410,7 +49449,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 686,
+ "line": 694,
"character": 4
}
],
@@ -49420,7 +49459,7 @@
}
},
{
- "id": 1049,
+ "id": 1050,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -49428,7 +49467,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 685,
+ "line": 693,
"character": 4
}
],
@@ -49441,7 +49480,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1038,
+ "target": 1039,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -49467,13 +49506,13 @@
"groups": [
{
"title": "Properties",
- "children": [1051, 1050, 1049]
+ "children": [1052, 1051, 1050]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 684,
+ "line": 692,
"character": 4
}
]
@@ -49483,7 +49522,7 @@
}
},
{
- "id": 907,
+ "id": 908,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -49491,21 +49530,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 476,
+ "line": 484,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 908,
+ "id": 909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 909,
+ "id": 910,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49515,21 +49554,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 477,
+ "line": 485,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 910,
+ "id": 911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 912,
+ "id": 913,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49547,7 +49586,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 485,
+ "line": 493,
"character": 8
}
],
@@ -49557,7 +49596,7 @@
}
},
{
- "id": 911,
+ "id": 912,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -49591,7 +49630,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 483,
+ "line": 491,
"character": 8
}
],
@@ -49604,13 +49643,13 @@
"groups": [
{
"title": "Properties",
- "children": [912, 911]
+ "children": [913, 912]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 477,
+ "line": 485,
"character": 14
}
]
@@ -49621,13 +49660,13 @@
"groups": [
{
"title": "Properties",
- "children": [909]
+ "children": [910]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 476,
+ "line": 484,
"character": 43
}
]
@@ -49635,7 +49674,7 @@
}
},
{
- "id": 956,
+ "id": 957,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -49643,21 +49682,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 560,
+ "line": 568,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 957,
+ "id": 958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 961,
+ "id": 962,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -49683,7 +49722,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 566,
+ "line": 574,
"character": 4
}
],
@@ -49693,7 +49732,7 @@
}
},
{
- "id": 962,
+ "id": 963,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -49719,7 +49758,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 568,
+ "line": 576,
"character": 4
}
],
@@ -49729,7 +49768,7 @@
}
},
{
- "id": 963,
+ "id": 964,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49739,21 +49778,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 569,
+ "line": 577,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 964,
+ "id": 965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 965,
+ "id": 966,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49771,7 +49810,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 571,
+ "line": 579,
"character": 8
}
],
@@ -49784,13 +49823,13 @@
"groups": [
{
"title": "Properties",
- "children": [965]
+ "children": [966]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 569,
+ "line": 577,
"character": 14
}
]
@@ -49798,7 +49837,7 @@
}
},
{
- "id": 958,
+ "id": 959,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -49870,7 +49909,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 562,
+ "line": 570,
"character": 4
}
],
@@ -49907,7 +49946,7 @@
{
"type": "reflection",
"declaration": {
- "id": 959,
+ "id": 960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49915,7 +49954,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 562,
+ "line": 570,
"character": 78
}
]
@@ -49927,7 +49966,7 @@
}
},
{
- "id": 960,
+ "id": 961,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -49975,7 +50014,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 564,
+ "line": 572,
"character": 4
}
],
@@ -49988,13 +50027,13 @@
"groups": [
{
"title": "Properties",
- "children": [961, 962, 963, 958, 960]
+ "children": [962, 963, 964, 959, 961]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 560,
+ "line": 568,
"character": 43
}
]
@@ -50002,7 +50041,7 @@
}
},
{
- "id": 944,
+ "id": 945,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -50010,21 +50049,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 544,
+ "line": 552,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 945,
+ "id": 946,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 947,
+ "id": 948,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50034,21 +50073,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 547,
+ "line": 555,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 948,
+ "id": 949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 951,
+ "id": 952,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -50066,14 +50105,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 553,
+ "line": 561,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 952,
+ "id": 953,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -50081,13 +50120,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 553,
+ "line": 561,
"character": 22
}
],
"indexSignatures": [
{
- "id": 953,
+ "id": 954,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -50095,13 +50134,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 554,
+ "line": 562,
"character": 12
}
],
"parameters": [
{
- "id": 954,
+ "id": 955,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -50122,7 +50161,7 @@
}
},
{
- "id": 949,
+ "id": 950,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -50140,7 +50179,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 549,
+ "line": 557,
"character": 8
}
],
@@ -50150,7 +50189,7 @@
}
},
{
- "id": 950,
+ "id": 951,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -50168,7 +50207,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 551,
+ "line": 559,
"character": 8
}
],
@@ -50178,7 +50217,7 @@
}
},
{
- "id": 955,
+ "id": 956,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -50196,7 +50235,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 557,
+ "line": 565,
"character": 8
}
],
@@ -50209,13 +50248,13 @@
"groups": [
{
"title": "Properties",
- "children": [951, 949, 950, 955]
+ "children": [952, 950, 951, 956]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 547,
+ "line": 555,
"character": 14
}
]
@@ -50223,7 +50262,7 @@
}
},
{
- "id": 946,
+ "id": 947,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -50239,7 +50278,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 546,
+ "line": 554,
"character": 4
}
],
@@ -50254,13 +50293,13 @@
"groups": [
{
"title": "Properties",
- "children": [947, 946]
+ "children": [948, 947]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 544,
+ "line": 552,
"character": 41
}
]
@@ -50268,7 +50307,7 @@
}
},
{
- "id": 921,
+ "id": 922,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -50276,7 +50315,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 503,
+ "line": 511,
"character": 12
}
],
@@ -50295,14 +50334,14 @@
{
"type": "reflection",
"declaration": {
- "id": 922,
+ "id": 923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 923,
+ "id": 924,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50312,21 +50351,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 504,
+ "line": 512,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 924,
+ "id": 925,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 925,
+ "id": 926,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50336,7 +50375,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 505,
+ "line": 513,
"character": 8
}
],
@@ -50349,13 +50388,13 @@
"groups": [
{
"title": "Properties",
- "children": [925]
+ "children": [926]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 504,
+ "line": 512,
"character": 14
}
]
@@ -50366,13 +50405,13 @@
"groups": [
{
"title": "Properties",
- "children": [923]
+ "children": [924]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 503,
+ "line": 511,
"character": 70
}
]
@@ -50382,7 +50421,7 @@
}
},
{
- "id": 926,
+ "id": 927,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -50390,7 +50429,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 508,
+ "line": 516,
"character": 12
}
],
@@ -50400,14 +50439,14 @@
{
"type": "reflection",
"declaration": {
- "id": 927,
+ "id": 928,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 928,
+ "id": 929,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -50423,7 +50462,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 510,
+ "line": 518,
"character": 4
}
],
@@ -50433,7 +50472,7 @@
}
},
{
- "id": 929,
+ "id": 930,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50443,21 +50482,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 511,
+ "line": 519,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 930,
+ "id": 931,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 934,
+ "id": 935,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50475,7 +50514,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 523,
+ "line": 531,
"character": 8
}
],
@@ -50485,7 +50524,7 @@
}
},
{
- "id": 933,
+ "id": 934,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -50519,7 +50558,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 521,
+ "line": 529,
"character": 8
}
],
@@ -50529,7 +50568,7 @@
}
},
{
- "id": 931,
+ "id": 932,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -50547,7 +50586,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 513,
+ "line": 521,
"character": 8
}
],
@@ -50557,7 +50596,7 @@
}
},
{
- "id": 932,
+ "id": 933,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -50575,7 +50614,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 515,
+ "line": 523,
"character": 8
}
],
@@ -50588,13 +50627,13 @@
"groups": [
{
"title": "Properties",
- "children": [934, 933, 931, 932]
+ "children": [935, 934, 932, 933]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 511,
+ "line": 519,
"character": 14
}
]
@@ -50605,13 +50644,13 @@
"groups": [
{
"title": "Properties",
- "children": [928, 929]
+ "children": [929, 930]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 508,
+ "line": 516,
"character": 48
}
]
@@ -50620,14 +50659,14 @@
{
"type": "reflection",
"declaration": {
- "id": 935,
+ "id": 936,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 937,
+ "id": 938,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50637,21 +50676,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 528,
+ "line": 536,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 938,
+ "id": 939,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 941,
+ "id": 942,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50669,7 +50708,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 538,
+ "line": 546,
"character": 8
}
],
@@ -50679,7 +50718,7 @@
}
},
{
- "id": 942,
+ "id": 943,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -50697,7 +50736,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 540,
+ "line": 548,
"character": 8
}
],
@@ -50716,7 +50755,7 @@
}
},
{
- "id": 940,
+ "id": 941,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -50750,7 +50789,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 536,
+ "line": 544,
"character": 8
}
],
@@ -50760,7 +50799,7 @@
}
},
{
- "id": 939,
+ "id": 940,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -50778,7 +50817,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 530,
+ "line": 538,
"character": 8
}
],
@@ -50791,13 +50830,13 @@
"groups": [
{
"title": "Properties",
- "children": [941, 942, 940, 939]
+ "children": [942, 943, 941, 940]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 528,
+ "line": 536,
"character": 14
}
]
@@ -50805,7 +50844,7 @@
}
},
{
- "id": 936,
+ "id": 937,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -50821,7 +50860,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 527,
+ "line": 535,
"character": 4
}
],
@@ -50834,13 +50873,13 @@
"groups": [
{
"title": "Properties",
- "children": [937, 936]
+ "children": [938, 937]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 525,
+ "line": 533,
"character": 4
}
]
@@ -50850,7 +50889,7 @@
}
},
{
- "id": 1054,
+ "id": 1055,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -50858,7 +50897,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 692,
+ "line": 700,
"character": 12
}
],
@@ -50868,14 +50907,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1055,
+ "id": 1056,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1057,
+ "id": 1058,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50885,21 +50924,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 695,
+ "line": 703,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1058,
+ "id": 1059,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1060,
+ "id": 1061,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50917,7 +50956,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 699,
+ "line": 707,
"character": 8
}
],
@@ -50927,7 +50966,7 @@
}
},
{
- "id": 1059,
+ "id": 1060,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -50945,7 +50984,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 697,
+ "line": 705,
"character": 8
}
],
@@ -50955,7 +50994,7 @@
}
},
{
- "id": 1061,
+ "id": 1062,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -50973,7 +51012,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 705,
+ "line": 713,
"character": 8
}
],
@@ -50986,13 +51025,13 @@
"groups": [
{
"title": "Properties",
- "children": [1060, 1059, 1061]
+ "children": [1061, 1060, 1062]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 695,
+ "line": 703,
"character": 14
}
]
@@ -51000,7 +51039,7 @@
}
},
{
- "id": 1056,
+ "id": 1057,
"name": "providerId",
"variant": "declaration",
"kind": 1024,
@@ -51016,7 +51055,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 694,
+ "line": 702,
"character": 4
}
],
@@ -51029,13 +51068,13 @@
"groups": [
{
"title": "Properties",
- "children": [1057, 1056]
+ "children": [1058, 1057]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 692,
+ "line": 700,
"character": 28
}
]
@@ -51044,14 +51083,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1062,
+ "id": 1063,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1063,
+ "id": 1064,
"name": "domain",
"variant": "declaration",
"kind": 1024,
@@ -51067,7 +51106,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 709,
+ "line": 717,
"character": 4
}
],
@@ -51077,7 +51116,7 @@
}
},
{
- "id": 1064,
+ "id": 1065,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -51087,21 +51126,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 710,
+ "line": 718,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1065,
+ "id": 1066,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1067,
+ "id": 1068,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -51119,7 +51158,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 714,
+ "line": 722,
"character": 8
}
],
@@ -51129,7 +51168,7 @@
}
},
{
- "id": 1066,
+ "id": 1067,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -51147,7 +51186,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 712,
+ "line": 720,
"character": 8
}
],
@@ -51157,7 +51196,7 @@
}
},
{
- "id": 1068,
+ "id": 1069,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -51175,7 +51214,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 720,
+ "line": 728,
"character": 8
}
],
@@ -51188,13 +51227,13 @@
"groups": [
{
"title": "Properties",
- "children": [1067, 1066, 1068]
+ "children": [1068, 1067, 1069]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 710,
+ "line": 718,
"character": 14
}
]
@@ -51205,13 +51244,13 @@
"groups": [
{
"title": "Properties",
- "children": [1063, 1064]
+ "children": [1064, 1065]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 707,
+ "line": 715,
"character": 4
}
]
@@ -51221,7 +51260,7 @@
}
},
{
- "id": 1310,
+ "id": 1311,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -51229,21 +51268,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1129,
+ "line": 1137,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1311,
+ "id": 1312,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1312,
+ "id": 1313,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -51261,7 +51300,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1140,
+ "line": 1148,
"character": 4
}
],
@@ -51287,13 +51326,13 @@
"groups": [
{
"title": "Properties",
- "children": [1312]
+ "children": [1313]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1129,
+ "line": 1137,
"character": 22
}
]
@@ -51301,7 +51340,7 @@
}
},
{
- "id": 1362,
+ "id": 1363,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -51309,7 +51348,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1251,
+ "line": 1259,
"character": 12
}
],
@@ -51323,7 +51362,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1361,
+ "target": 1362,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -51331,7 +51370,7 @@
}
},
{
- "id": 913,
+ "id": 914,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -51339,13 +51378,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 488,
+ "line": 496,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 776,
"typeArguments": [
{
"type": "intersection",
@@ -51362,14 +51401,14 @@
{
"type": "reflection",
"declaration": {
- "id": 914,
+ "id": 915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 915,
+ "id": 916,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -51379,21 +51418,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 489,
+ "line": 497,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 916,
+ "id": 917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 919,
+ "id": 920,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -51403,7 +51442,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 492,
+ "line": 500,
"character": 8
}
],
@@ -51413,7 +51452,7 @@
}
},
{
- "id": 920,
+ "id": 921,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -51423,7 +51462,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 493,
+ "line": 501,
"character": 8
}
],
@@ -51442,7 +51481,7 @@
}
},
{
- "id": 918,
+ "id": 919,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -51452,7 +51491,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 491,
+ "line": 499,
"character": 8
}
],
@@ -51462,7 +51501,7 @@
}
},
{
- "id": 917,
+ "id": 918,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -51472,7 +51511,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 490,
+ "line": 498,
"character": 8
}
],
@@ -51485,13 +51524,13 @@
"groups": [
{
"title": "Properties",
- "children": [919, 920, 918, 917]
+ "children": [920, 921, 919, 918]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 489,
+ "line": 497,
"character": 14
}
]
@@ -51502,13 +51541,13 @@
"groups": [
{
"title": "Properties",
- "children": [915]
+ "children": [916]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 488,
+ "line": 496,
"character": 79
}
]
@@ -51522,7 +51561,7 @@
}
},
{
- "id": 966,
+ "id": 967,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -51530,21 +51569,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 574,
+ "line": 582,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 967,
+ "id": 968,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 972,
+ "id": 973,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -51554,7 +51593,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 576,
+ "line": 584,
"character": 4
}
],
@@ -51564,14 +51603,14 @@
{
"type": "reflection",
"declaration": {
- "id": 973,
+ "id": 974,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 974,
+ "id": 975,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -51579,14 +51618,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 577,
+ "line": 585,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 975,
+ "id": 976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -51594,13 +51633,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 577,
+ "line": 585,
"character": 18
}
],
"signatures": [
{
- "id": 976,
+ "id": 977,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -51618,13 +51657,13 @@
"groups": [
{
"title": "Properties",
- "children": [974]
+ "children": [975]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 576,
+ "line": 584,
"character": 16
}
]
@@ -51638,7 +51677,7 @@
}
},
{
- "id": 968,
+ "id": 969,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -51648,14 +51687,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 575,
+ "line": 583,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 969,
+ "id": 970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -51663,20 +51702,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 575,
+ "line": 583,
"character": 13
}
],
"signatures": [
{
- "id": 970,
+ "id": 971,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 971,
+ "id": 972,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -51740,7 +51779,7 @@
}
},
{
- "id": 977,
+ "id": 978,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -51750,14 +51789,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 579,
+ "line": 587,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 978,
+ "id": 979,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -51765,20 +51804,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 579,
+ "line": 587,
"character": 18
}
],
"signatures": [
{
- "id": 979,
+ "id": 980,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 980,
+ "id": 981,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -51794,7 +51833,7 @@
}
},
{
- "id": 981,
+ "id": 982,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -51854,13 +51893,13 @@
"groups": [
{
"title": "Properties",
- "children": [972, 968, 977]
+ "children": [973, 969, 978]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 574,
+ "line": 582,
"character": 27
}
]
@@ -51868,7 +51907,7 @@
}
},
{
- "id": 982,
+ "id": 983,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -51876,7 +51915,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 581,
+ "line": 589,
"character": 12
}
],
@@ -51886,14 +51925,14 @@
{
"type": "reflection",
"declaration": {
- "id": 983,
+ "id": 984,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 984,
+ "id": 985,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -51901,7 +51940,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 582,
+ "line": 590,
"character": 4
}
],
@@ -51911,7 +51950,7 @@
}
},
{
- "id": 987,
+ "id": 988,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -51921,21 +51960,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 587,
+ "line": 595,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 988,
+ "id": 989,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 990,
+ "id": 991,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -51953,7 +51992,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 591,
+ "line": 599,
"character": 8
}
],
@@ -51963,7 +52002,7 @@
}
},
{
- "id": 991,
+ "id": 992,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -51973,7 +52012,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 592,
+ "line": 600,
"character": 8
}
],
@@ -52035,7 +52074,7 @@
}
},
{
- "id": 989,
+ "id": 990,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -52053,7 +52092,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 589,
+ "line": 597,
"character": 8
}
],
@@ -52066,13 +52105,13 @@
"groups": [
{
"title": "Properties",
- "children": [990, 991, 989]
+ "children": [991, 992, 990]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 587,
+ "line": 595,
"character": 14
}
]
@@ -52080,7 +52119,7 @@
}
},
{
- "id": 986,
+ "id": 987,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -52098,7 +52137,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 586,
+ "line": 594,
"character": 4
}
],
@@ -52108,7 +52147,7 @@
}
},
{
- "id": 985,
+ "id": 986,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -52134,13 +52173,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 584,
+ "line": 592,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 966,
+ "target": 967,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -52149,13 +52188,13 @@
"groups": [
{
"title": "Properties",
- "children": [984, 987, 986, 985]
+ "children": [985, 988, 987, 986]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 581,
+ "line": 589,
"character": 36
}
]
@@ -52164,14 +52203,14 @@
{
"type": "reflection",
"declaration": {
- "id": 992,
+ "id": 993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 993,
+ "id": 994,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -52179,7 +52218,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 595,
+ "line": 603,
"character": 4
}
],
@@ -52189,7 +52228,7 @@
}
},
{
- "id": 994,
+ "id": 995,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -52229,7 +52268,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 597,
+ "line": 605,
"character": 4
}
],
@@ -52239,7 +52278,7 @@
}
},
{
- "id": 996,
+ "id": 997,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -52249,21 +52288,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 600,
+ "line": 608,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 997,
+ "id": 998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 998,
+ "id": 999,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -52281,7 +52320,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 602,
+ "line": 610,
"character": 8
}
],
@@ -52294,13 +52333,13 @@
"groups": [
{
"title": "Properties",
- "children": [998]
+ "children": [999]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 600,
+ "line": 608,
"character": 14
}
]
@@ -52308,7 +52347,7 @@
}
},
{
- "id": 995,
+ "id": 996,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -52324,7 +52363,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 599,
+ "line": 607,
"character": 4
}
],
@@ -52342,13 +52381,13 @@
"groups": [
{
"title": "Properties",
- "children": [993, 994, 996, 995]
+ "children": [994, 995, 997, 996]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 594,
+ "line": 602,
"character": 4
}
]
@@ -52358,7 +52397,7 @@
}
},
{
- "id": 833,
+ "id": 834,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -52366,25 +52405,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 210,
+ "line": 218,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 780,
+ "target": 781,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 834,
+ "id": 835,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 835,
+ "id": 836,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -52408,7 +52447,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 218,
+ "line": 226,
"character": 4
}
],
@@ -52421,13 +52460,13 @@
"groups": [
{
"title": "Properties",
- "children": [835]
+ "children": [836]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 210,
+ "line": 218,
"character": 40
}
]
@@ -52439,7 +52478,7 @@
}
},
{
- "id": 777,
+ "id": 778,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -52455,20 +52494,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 145,
+ "line": 153,
"character": 12
}
],
"typeParameters": [
{
- "id": 778,
+ "id": 779,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 779,
+ "id": 780,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -52478,7 +52517,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 778,
+ "target": 779,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -52495,14 +52534,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 778,
+ "target": 779,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 779,
+ "target": 780,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -52523,7 +52562,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L28"
}
],
"typeParameters": [
@@ -52573,7 +52612,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 154,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L154"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L154"
}
],
"type": {
@@ -52589,7 +52628,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 154,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L154"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L154"
}
],
"signatures": [
@@ -52641,7 +52680,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L61"
}
],
"type": {
@@ -52674,7 +52713,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L65"
}
],
"type": {
@@ -52703,7 +52742,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 115,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L115"
}
],
"type": {
@@ -52755,7 +52794,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 95,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L95"
}
],
"type": {
@@ -52778,7 +52817,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 95,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L95"
}
],
"signatures": [
@@ -52824,7 +52863,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 95,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L95"
}
],
"indexSignatures": [
@@ -52839,7 +52878,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 95,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L95"
}
],
"parameters": [
@@ -52897,7 +52936,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 111,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L111"
}
],
"type": {
@@ -52939,7 +52978,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 121,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L121"
}
],
"type": {
@@ -52980,7 +53019,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 73,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L73"
}
],
"type": {
@@ -53009,7 +53048,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 99,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L99"
}
],
"type": {
@@ -53050,7 +53089,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 69,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L69"
}
],
"type": {
@@ -53079,7 +53118,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 126,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L126"
}
],
"type": {
@@ -53121,7 +53160,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 107,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L107"
}
],
"type": {
@@ -53153,7 +53192,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 61,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L61"
}
]
}
@@ -53188,7 +53227,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L32"
}
],
"type": {
@@ -53213,7 +53252,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 33,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L33"
}
],
"type": {
@@ -53256,7 +53295,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L45"
}
],
"type": {
@@ -53296,7 +53335,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 58,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L58"
}
],
"type": {
@@ -53316,7 +53355,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 32,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L32"
}
]
}
@@ -53335,7 +53374,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L133"
}
],
"type": {
@@ -53376,7 +53415,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 137,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L137"
}
],
"type": {
@@ -53410,7 +53449,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 141,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L141"
}
],
"type": {
@@ -53445,7 +53484,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 133,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L133"
}
]
}
@@ -53472,12 +53511,12 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L131"
}
],
"type": {
"type": "reference",
- "target": 2118,
+ "target": 2119,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js"
}
@@ -53495,7 +53534,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L132"
}
],
"type": {
@@ -53520,14 +53559,14 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 28,
"character": 48,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/lib/types.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/lib/types.ts#L28"
}
]
}
}
},
{
- "id": 1292,
+ "id": 1293,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -53535,7 +53574,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1103,
+ "line": 1111,
"character": 12
}
],
@@ -53593,14 +53632,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1293,
+ "id": 1294,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1294,
+ "id": 1295,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -53626,7 +53665,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1111,
+ "line": 1119,
"character": 4
}
],
@@ -53639,13 +53678,13 @@
"groups": [
{
"title": "Properties",
- "children": [1294]
+ "children": [1295]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1103,
+ "line": 1111,
"character": 103
}
]
@@ -53655,7 +53694,7 @@
}
},
{
- "id": 1391,
+ "id": 1392,
"name": "UpdateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -53671,21 +53710,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1329,
+ "line": 1337,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1392,
+ "id": 1393,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1393,
+ "id": 1394,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -53703,7 +53742,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1331,
+ "line": 1339,
"character": 4
}
],
@@ -53713,7 +53752,7 @@
}
},
{
- "id": 1394,
+ "id": 1395,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -53731,7 +53770,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1333,
+ "line": 1341,
"character": 4
}
],
@@ -53741,7 +53780,7 @@
}
},
{
- "id": 1397,
+ "id": 1398,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -53759,7 +53798,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1339,
+ "line": 1347,
"character": 4
}
],
@@ -53767,14 +53806,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1363,
+ "target": 1364,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1395,
+ "id": 1396,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -53792,7 +53831,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1335,
+ "line": 1343,
"character": 4
}
],
@@ -53802,7 +53841,7 @@
}
},
{
- "id": 1396,
+ "id": 1397,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -53820,7 +53859,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1337,
+ "line": 1345,
"character": 4
}
],
@@ -53836,13 +53875,13 @@
"groups": [
{
"title": "Properties",
- "children": [1393, 1394, 1397, 1395, 1396]
+ "children": [1394, 1395, 1398, 1396, 1397]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1329,
+ "line": 1337,
"character": 38
}
]
@@ -53850,7 +53889,7 @@
}
},
{
- "id": 836,
+ "id": 837,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -53858,25 +53897,25 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 220,
+ "line": 228,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 789,
+ "target": 790,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 837,
+ "id": 838,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 838,
+ "id": 839,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -53884,7 +53923,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 221,
+ "line": 229,
"character": 4
}
],
@@ -53899,13 +53938,13 @@
"groups": [
{
"title": "Properties",
- "children": [838]
+ "children": [839]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 220,
+ "line": 228,
"character": 56
}
]
@@ -53917,7 +53956,7 @@
}
},
{
- "id": 1018,
+ "id": 1019,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -53925,7 +53964,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 631,
+ "line": 639,
"character": 12
}
],
@@ -53934,19 +53973,19 @@
"types": [
{
"type": "reference",
- "target": 1019,
+ "target": 1020,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1027,
+ "target": 1028,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1035,
+ "target": 1036,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -53954,7 +53993,7 @@
}
},
{
- "id": 771,
+ "id": 772,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -53962,21 +54001,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 129,
+ "line": 137,
"character": 12
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 772,
+ "id": 773,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 774,
+ "id": 775,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -53984,7 +54023,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 131,
+ "line": 139,
"character": 4
}
],
@@ -53994,7 +54033,7 @@
}
},
{
- "id": 773,
+ "id": 774,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -54002,7 +54041,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 130,
+ "line": 138,
"character": 4
}
],
@@ -54010,7 +54049,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 770,
+ "target": 771,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -54020,13 +54059,13 @@
"groups": [
{
"title": "Properties",
- "children": [774, 773]
+ "children": [775, 774]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 129,
+ "line": 137,
"character": 27
}
]
@@ -54034,7 +54073,7 @@
}
},
{
- "id": 770,
+ "id": 771,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -54042,7 +54081,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 128,
+ "line": 136,
"character": 12
}
],
@@ -54068,7 +54107,7 @@
}
},
{
- "id": 1017,
+ "id": 1018,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -54076,7 +54115,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 630,
+ "line": 638,
"character": 12
}
],
@@ -54085,13 +54124,13 @@
"types": [
{
"type": "reference",
- "target": 982,
+ "target": 983,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1000,
+ "target": 1001,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -54218,7 +54257,7 @@
}
},
{
- "id": 2246,
+ "id": 2247,
"name": "REALTIME_CHANNEL_STATES",
"variant": "declaration",
"kind": 32,
@@ -54247,7 +54286,7 @@
}
},
{
- "id": 1361,
+ "id": 1362,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -54257,7 +54296,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1250,
+ "line": 1258,
"character": 21
}
],
@@ -54313,7 +54352,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 41,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/index.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/index.ts#L41"
}
],
"signatures": [
@@ -54328,7 +54367,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 41,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/index.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/index.ts#L41"
}
],
"typeParameters": [
@@ -54376,7 +54415,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 45,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/index.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/index.ts#L45"
}
],
"type": {
@@ -54396,7 +54435,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 45,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/index.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/index.ts#L45"
}
]
}
@@ -54718,7 +54757,7 @@
]
},
{
- "id": 1489,
+ "id": 1490,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -54732,7 +54771,7 @@
],
"signatures": [
{
- "id": 1490,
+ "id": 1491,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -54746,7 +54785,7 @@
],
"parameters": [
{
- "id": 1491,
+ "id": 1492,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -54763,7 +54802,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1517,
+ "target": 1518,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -54772,7 +54811,7 @@
]
},
{
- "id": 1486,
+ "id": 1487,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -54786,7 +54825,7 @@
],
"signatures": [
{
- "id": 1487,
+ "id": 1488,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -54800,7 +54839,7 @@
],
"parameters": [
{
- "id": 1488,
+ "id": 1489,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -54817,7 +54856,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -54826,7 +54865,7 @@
]
},
{
- "id": 1495,
+ "id": 1496,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -54840,7 +54879,7 @@
],
"signatures": [
{
- "id": 1496,
+ "id": 1497,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -54854,7 +54893,7 @@
],
"parameters": [
{
- "id": 1497,
+ "id": 1498,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -54871,7 +54910,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1574,
+ "target": 1575,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -54880,7 +54919,7 @@
]
},
{
- "id": 1498,
+ "id": 1499,
"name": "isAuthPKCECodeVerifierMissingError",
"variant": "declaration",
"kind": 64,
@@ -54894,7 +54933,7 @@
],
"signatures": [
{
- "id": 1499,
+ "id": 1500,
"name": "isAuthPKCECodeVerifierMissingError",
"variant": "signature",
"kind": 4096,
@@ -54908,7 +54947,7 @@
],
"parameters": [
{
- "id": 1500,
+ "id": 1501,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -54925,7 +54964,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1628,
+ "target": 1629,
"name": "AuthPKCECodeVerifierMissingError",
"package": "@supabase/auth-js"
}
@@ -54934,7 +54973,7 @@
]
},
{
- "id": 1501,
+ "id": 1502,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -54948,7 +54987,7 @@
],
"signatures": [
{
- "id": 1502,
+ "id": 1503,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -54962,7 +55001,7 @@
],
"parameters": [
{
- "id": 1503,
+ "id": 1504,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -54979,7 +55018,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1636,
+ "target": 1637,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -54988,7 +55027,7 @@
]
},
{
- "id": 1492,
+ "id": 1493,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -55002,7 +55041,7 @@
],
"signatures": [
{
- "id": 1493,
+ "id": 1494,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -55016,7 +55055,7 @@
],
"parameters": [
{
- "id": 1494,
+ "id": 1495,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -55033,7 +55072,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1549,
+ "target": 1550,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -55042,7 +55081,7 @@
]
},
{
- "id": 1504,
+ "id": 1505,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -55056,7 +55095,7 @@
],
"signatures": [
{
- "id": 1505,
+ "id": 1506,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -55070,7 +55109,7 @@
],
"parameters": [
{
- "id": 1506,
+ "id": 1507,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -55087,7 +55126,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1646,
+ "target": 1647,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -55527,7 +55566,7 @@
]
},
{
- "id": 839,
+ "id": 840,
"name": "Session",
"variant": "reference",
"kind": 4194304,
@@ -55535,14 +55574,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 223,
+ "line": 231,
"character": 17
}
],
"target": 42
},
{
- "id": 877,
+ "id": 878,
"name": "User",
"variant": "reference",
"kind": 4194304,
@@ -55550,7 +55589,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 338,
+ "line": 346,
"character": 17
}
],
@@ -55560,47 +55599,47 @@
"groups": [
{
"title": "Enumerations",
- "children": [102, 2227, 2232, 2237, 2241]
+ "children": [102, 2228, 2233, 2238, 2242]
},
{
"title": "Classes",
"children": [
- 1517, 1507, 1574, 1565, 1658, 1557, 1628, 1601, 1636, 1549, 1527, 1646, 1537, 95, 85,
- 80, 90, 293, 379, 711, 57, 1684, 2004, 1667, 118, 2247
+ 1518, 1508, 1575, 1566, 1659, 1558, 1629, 1602, 1637, 1550, 1528, 1647, 1538, 95, 85,
+ 80, 90, 293, 379, 711, 57, 1685, 2005, 1668, 118, 2248
]
},
{
"title": "Interfaces",
"children": [
- 884, 842, 1463, 42, 15, 1091, 1285, 1411, 1154, 1354, 1334, 897, 869, 878, 845, 874,
- 1027, 1019, 1035, 2263, 2313
+ 885, 843, 1464, 42, 15, 1092, 1286, 1412, 1155, 1355, 1335, 898, 870, 879, 846, 875,
+ 1028, 1020, 1036, 2264, 2314
]
},
{
"title": "Type Aliases",
"children": [
- 840, 729, 728, 1148, 943, 1275, 1272, 1282, 1279, 1139, 1143, 1138, 1140, 1141, 1142,
- 1317, 1134, 1316, 1318, 1149, 1144, 1135, 1133, 1126, 1453, 1454, 1460, 1461, 806, 797,
- 801, 811, 815, 1298, 1383, 291, 1039, 999, 1000, 858, 857, 69, 1085, 1075, 1094, 1099,
- 1095, 1106, 1080, 1069, 739, 1295, 1319, 730, 1125, 1124, 1122, 1121, 1123, 1107, 1314,
- 1313, 1315, 1120, 1108, 1119, 1112, 1111, 1113, 1117, 1038, 1434, 1440, 1367, 1363,
- 1399, 1366, 1398, 1364, 1365, 1455, 1450, 820, 1306, 1299, 55, 51, 53, 775, 727, 286,
- 290, 284, 1989, 2003, 2118, 2149, 2156, 2163, 2187, 2168, 2178, 2197, 2207, 2217, 2226,
- 780, 789, 1324, 1040, 907, 956, 944, 921, 926, 1054, 1310, 1362, 913, 966, 982, 833,
- 777, 248, 1292, 1391, 836, 1018, 771, 770, 1017
+ 841, 729, 728, 1149, 944, 1276, 1273, 1283, 1280, 1140, 1144, 1139, 1141, 1142, 1143,
+ 1318, 1135, 1317, 1319, 1150, 1145, 1136, 1134, 1127, 1454, 1455, 1461, 1462, 807, 798,
+ 802, 812, 816, 1299, 1384, 291, 1040, 1000, 1001, 859, 858, 69, 1086, 1076, 1095, 1100,
+ 1096, 1107, 1081, 1070, 739, 1296, 1320, 730, 1126, 1125, 1123, 1122, 1124, 1108, 1315,
+ 1314, 1316, 1121, 1109, 1120, 1113, 1112, 1114, 1118, 1039, 1435, 1441, 1368, 1364,
+ 1400, 1367, 1399, 1365, 1366, 1456, 1451, 821, 1307, 1300, 55, 51, 53, 776, 727, 286,
+ 290, 284, 1990, 2004, 2119, 2150, 2157, 2164, 2188, 2169, 2179, 2198, 2208, 2218, 2227,
+ 781, 790, 1325, 1041, 908, 957, 945, 922, 927, 1055, 1311, 1363, 914, 967, 983, 834,
+ 778, 248, 1293, 1392, 837, 1019, 772, 771, 1018
]
},
{
"title": "Variables",
- "children": [701, 702, 716, 2246, 1361]
+ "children": [701, 702, 716, 2247, 1362]
},
{
"title": "Functions",
- "children": [2, 1489, 1486, 1495, 1498, 1501, 1492, 1504, 703, 719]
+ "children": [2, 1490, 1487, 1496, 1499, 1502, 1493, 1505, 703, 719]
},
{
"title": "References",
- "children": [839, 877]
+ "children": [840, 878]
}
],
"sources": [
@@ -55608,7 +55647,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/index.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/index.ts#L1"
}
]
}
@@ -55799,7 +55838,119 @@
},
{
"kind": "text",
- "text": " API.\n\n### Bun\n\nWe support Bun runtime environments. Bun provides native fetch support and is compatible with Node.js APIs. Since Bun does not follow a structured release schedule like Node.js or Deno, we support current stable versions of Bun and may drop support for older versions in minor releases without considering it a breaking change.\n\n### React Native\n\nWe support React Native environments with fetch polyfills provided by the framework. Since React Native does not follow a structured release schedule, we support current stable versions and may drop support for older versions in minor releases without considering it a breaking change.\n\n### Cloudflare Workers\n\nWe support Cloudflare Workers runtime environments. Cloudflare Workers provides native fetch support. Since Cloudflare Workers does not follow a structured release schedule, we support current stable versions and may drop support for older versions in minor releases without considering it a breaking change.\n\n### Important Notes\n\n- **Experimental features**: Features marked as experimental may be removed or changed without notice\n\n## Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
+ "text": " API.\n\n### Bun\n\nWe support Bun runtime environments. Bun provides native fetch support and is compatible with Node.js APIs. Since Bun does not follow a structured release schedule like Node.js or Deno, we support current stable versions of Bun and may drop support for older versions in minor releases without considering it a breaking change.\n\n### React Native\n\nWe support React Native environments with fetch polyfills provided by the framework. Since React Native does not follow a structured release schedule, we support current stable versions and may drop support for older versions in minor releases without considering it a breaking change.\n\n### Cloudflare Workers\n\nWe support Cloudflare Workers runtime environments. Cloudflare Workers provides native fetch support. Since Cloudflare Workers does not follow a structured release schedule, we support current stable versions and may drop support for older versions in minor releases without considering it a breaking change.\n\n### Important Notes\n\n- **Experimental features**: Features marked as experimental may be removed or changed without notice\n\n## Known Build Warnings\n\n### "
+ },
+ {
+ "kind": "code",
+ "text": "`UNUSED_EXTERNAL_IMPORT`"
+ },
+ {
+ "kind": "text",
+ "text": " in Vite / Rollup / Nuxt\n\nWhen bundling your app, you may see warnings like:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```\n\"PostgrestError\" is imported from external module \"@supabase/postgrest-js\" but never used in \"...supabase-js/dist/index.mjs\".\n\"FunctionRegion\", \"FunctionsError\", \"FunctionsFetchError\", \"FunctionsHttpError\" and \"FunctionsRelayError\" are imported from external module \"@supabase/functions-js\" but never used in \"...\".\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**This is a false positive — your bundle is fine.** Here is why it happens:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "`@supabase/supabase-js`"
+ },
+ {
+ "kind": "text",
+ "text": " re-exports "
+ },
+ {
+ "kind": "code",
+ "text": "`PostgrestError`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`FunctionsError`"
+ },
+ {
+ "kind": "text",
+ "text": ", and related symbols so you can import them directly from "
+ },
+ {
+ "kind": "code",
+ "text": "`@supabase/supabase-js`"
+ },
+ {
+ "kind": "text",
+ "text": ". However, our build tool merges all imports from the same package into a single import statement in the built output:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\n// dist/index.mjs (simplified)\nimport { PostgrestClient, PostgrestError } from '@supabase/postgrest-js'\n// ^ used internally ^ re-exported for you\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nYour bundler checks which names from that import are used _in the code body_, and flags "
+ },
+ {
+ "kind": "code",
+ "text": "`PostgrestError`"
+ },
+ {
+ "kind": "text",
+ "text": " as unused because it only appears in an "
+ },
+ {
+ "kind": "code",
+ "text": "`export`"
+ },
+ {
+ "kind": "text",
+ "text": " statement — not called or assigned. The export itself is the usage, but downstream bundlers don't track this correctly. This is a known Rollup/Vite limitation with re-exported external imports.\n\n**Nothing is broken.** Tree-shaking and bundle size are unaffected.\n\nTo suppress the warning:\n\n**Vite / Rollup ("
+ },
+ {
+ "kind": "code",
+ "text": "`vite.config.js`"
+ },
+ {
+ "kind": "text",
+ "text": " or "
+ },
+ {
+ "kind": "code",
+ "text": "`rollup.config.js`"
+ },
+ {
+ "kind": "text",
+ "text": "):**\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nexport default {\n build: {\n rollupOptions: {\n onwarn(warning, warn) {\n if (warning.code === 'UNUSED_EXTERNAL_IMPORT' && warning.exporter?.includes('@supabase/'))\n return\n warn(warning)\n },\n },\n },\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Nuxt ("
+ },
+ {
+ "kind": "code",
+ "text": "`nuxt.config.ts`"
+ },
+ {
+ "kind": "text",
+ "text": "):**\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```ts\nexport default defineNuxtConfig({\n vite: {\n build: {\n rollupOptions: {\n onwarn(warning, warn) {\n if (warning.code === 'UNUSED_EXTERNAL_IMPORT' && warning.exporter?.includes('@supabase/'))\n return\n warn(warning)\n },\n },\n },\n },\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n## Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
},
{
"kind": "relative-link",
@@ -58543,515 +58694,515 @@
},
"770": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "WeakPasswordReasons"
+ "qualifiedName": "__type.skipAutoInitialize"
},
"771": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "WeakPassword"
+ "qualifiedName": "WeakPasswordReasons"
},
"772": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WeakPassword"
},
"773": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.reasons"
+ "qualifiedName": "__type"
},
"774": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.reasons"
},
"775": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Prettify"
+ "qualifiedName": "__type.message"
},
"776": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "Prettify"
},
"777": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "StrictOmit"
+ "qualifiedName": "T"
},
"778": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "StrictOmit"
},
"779": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "K"
+ "qualifiedName": "T"
},
"780": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "RequestResult"
+ "qualifiedName": "K"
},
"781": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RequestResult"
},
"782": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"783": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"784": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"785": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"786": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"787": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.error"
},
"788": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "ErrorType"
+ "qualifiedName": "T"
},
"789": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "RequestResultSafeDestructure"
+ "qualifiedName": "ErrorType"
},
"790": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RequestResultSafeDestructure"
},
"791": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"792": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"793": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"794": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"795": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"796": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.error"
},
"797": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthResponse"
+ "qualifiedName": "T"
},
"798": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthResponse"
},
"799": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"800": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"801": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthResponsePassword"
+ "qualifiedName": "__type.session"
},
"802": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthResponsePassword"
},
"803": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"804": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"805": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.weak_password"
+ "qualifiedName": "__type.session"
},
"806": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOtpResponse"
+ "qualifiedName": "__type.weak_password"
},
"807": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOtpResponse"
},
"808": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"809": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"810": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.messageId"
+ "qualifiedName": "__type.session"
},
"811": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthTokenResponse"
+ "qualifiedName": "__type.messageId"
},
"812": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthTokenResponse"
},
"813": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"814": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"815": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthTokenResponsePassword"
+ "qualifiedName": "__type.session"
},
"816": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthTokenResponsePassword"
},
"817": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"818": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.session"
+ "qualifiedName": "__type.user"
},
"819": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.weakPassword"
+ "qualifiedName": "__type.session"
},
"820": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthResponse"
+ "qualifiedName": "__type.weakPassword"
},
"821": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthResponse"
},
"822": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"823": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"824": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"825": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.provider"
},
"826": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.url"
},
"827": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"828": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"829": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"830": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"831": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.provider"
},
"832": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.url"
},
"833": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SSOResponse"
+ "qualifiedName": "__type.error"
},
"834": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SSOResponse"
},
"835": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"836": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserResponse"
+ "qualifiedName": "__type.url"
},
"837": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UserResponse"
},
"838": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"839": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Session"
+ "qualifiedName": "__type.user"
},
"840": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AMRMethod"
+ "qualifiedName": "Session"
},
"841": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AMRMethod"
},
"842": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AMREntry"
+ "qualifiedName": "__type"
},
"843": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AMREntry.method"
+ "qualifiedName": "AMREntry"
},
"844": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AMREntry.timestamp"
+ "qualifiedName": "AMREntry.method"
},
"845": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserIdentity"
+ "qualifiedName": "AMREntry.timestamp"
},
"846": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserIdentity.id"
+ "qualifiedName": "UserIdentity"
},
"847": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserIdentity.user_id"
+ "qualifiedName": "UserIdentity.id"
},
"848": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserIdentity.identity_data"
+ "qualifiedName": "UserIdentity.user_id"
},
"849": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UserIdentity.identity_data"
},
"850": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "851": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "852": {
+ "853": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "853": {
+ "854": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "854": {
+ "855": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "855": {
+ "856": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "856": {
+ "857": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "857": {
+ "858": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "858": {
+ "859": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Factor"
},
- "859": {
+ "860": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "860": {
+ "861": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "861": {
+ "862": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "862": {
+ "863": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "863": {
+ "864": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "864": {
+ "865": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "865": {
+ "866": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "866": {
+ "867": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.last_challenged_at"
},
- "867": {
+ "868": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Type"
},
- "868": {
+ "869": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Status"
},
- "869": {
+ "870": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "870": {
+ "871": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.provider"
},
- "871": {
+ "872": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.providers"
},
- "872": {
+ "873": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.__index"
},
- "874": {
+ "875": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserMetadata"
},
- "875": {
+ "876": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserMetadata.__index"
},
- "877": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "User"
- },
"878": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes"
+ "qualifiedName": "User"
},
"879": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.email"
+ "qualifiedName": "UserAttributes"
},
"880": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.phone"
+ "qualifiedName": "UserAttributes.email"
},
"881": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.password"
+ "qualifiedName": "UserAttributes.phone"
},
"882": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.nonce"
+ "qualifiedName": "UserAttributes.password"
},
"883": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.data"
+ "qualifiedName": "UserAttributes.nonce"
},
"884": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes"
+ "qualifiedName": "UserAttributes.data"
},
"885": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.user_metadata"
+ "qualifiedName": "AdminUserAttributes"
},
"886": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.app_metadata"
+ "qualifiedName": "AdminUserAttributes.user_metadata"
},
"887": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.email_confirm"
+ "qualifiedName": "AdminUserAttributes.app_metadata"
},
"888": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.phone_confirm"
+ "qualifiedName": "AdminUserAttributes.email_confirm"
},
"889": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.ban_duration"
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
},
"890": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.role"
+ "qualifiedName": "AdminUserAttributes.ban_duration"
},
"891": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.password_hash"
+ "qualifiedName": "AdminUserAttributes.role"
},
"892": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.id"
+ "qualifiedName": "AdminUserAttributes.password_hash"
},
"893": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "nonce"
+ "qualifiedName": "AdminUserAttributes.id"
},
"894": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "email"
+ "qualifiedName": "nonce"
},
"895": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "password"
+ "qualifiedName": "email"
},
"896": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "password"
},
"897": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription"
+ "qualifiedName": "phone"
},
"898": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.id"
+ "qualifiedName": "Subscription"
},
"899": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.callback"
+ "qualifiedName": "Subscription.id"
},
"900": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.callback"
},
"901": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -59059,19 +59210,19 @@
},
"902": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type"
},
"903": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "session"
+ "qualifiedName": "event"
},
"904": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.unsubscribe"
+ "qualifiedName": "session"
},
"905": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.unsubscribe"
},
"906": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -59079,251 +59230,251 @@
},
"907": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInAnonymouslyCredentials"
+ "qualifiedName": "__type"
},
"908": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInAnonymouslyCredentials"
},
"909": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"910": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"911": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"912": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"913": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignUpWithPasswordCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"914": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignUpWithPasswordCredentials"
},
"915": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"916": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"917": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"918": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.emailRedirectTo"
},
"919": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"920": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.captchaToken"
},
"921": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordCredentials"
+ "qualifiedName": "__type.channel"
},
"922": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithPasswordCredentials"
},
"923": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"924": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"925": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"926": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordlessCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"927": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithPasswordlessCredentials"
},
"928": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"929": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"930": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"931": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"932": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type.emailRedirectTo"
},
"933": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.shouldCreateUser"
},
"934": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"935": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"936": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type"
},
"937": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"938": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"939": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type"
},
"940": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.shouldCreateUser"
},
"941": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"942": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.captchaToken"
},
"943": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthFlowType"
+ "qualifiedName": "__type.channel"
},
"944": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithOAuthCredentials"
+ "qualifiedName": "AuthFlowType"
},
"945": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithOAuthCredentials"
},
"946": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"947": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.provider"
},
"948": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"949": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"950": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type.redirectTo"
},
"951": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.queryParams"
+ "qualifiedName": "__type.scopes"
},
"952": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.queryParams"
},
"953": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "955": {
+ "954": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.__index"
},
"956": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithIdTokenCredentials"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"957": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithIdTokenCredentials"
},
"958": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type"
},
"959": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.provider"
},
"960": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token"
+ "qualifiedName": "__type"
},
"961": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type.token"
},
"962": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nonce"
+ "qualifiedName": "__type.access_token"
},
"963": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.nonce"
},
"964": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"965": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"966": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SolanaWallet"
+ "qualifiedName": "__type.captchaToken"
},
"967": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWallet"
},
"968": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signIn"
+ "qualifiedName": "__type"
},
"969": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signIn"
},
"970": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -59331,23 +59482,23 @@
},
"971": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "inputs"
+ "qualifiedName": "__type"
},
"972": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "inputs"
},
"973": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"974": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.toBase58"
+ "qualifiedName": "__type"
},
"975": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.toBase58"
},
"976": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -59355,11 +59506,11 @@
},
"977": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signMessage"
+ "qualifiedName": "__type"
},
"978": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signMessage"
},
"979": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -59367,707 +59518,707 @@
},
"980": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "message"
+ "qualifiedName": "__type"
},
"981": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "encoding"
+ "qualifiedName": "message"
},
"982": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SolanaWeb3Credentials"
+ "qualifiedName": "encoding"
},
"983": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWeb3Credentials"
},
"984": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"985": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.chain"
},
"986": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.wallet"
},
"987": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.statement"
},
"988": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"989": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"990": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.url"
},
"991": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signInWithSolana"
+ "qualifiedName": "__type.captchaToken"
},
"992": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signInWithSolana"
},
"993": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"994": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.chain"
},
"995": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.message"
},
"996": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.signature"
},
"997": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"998": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"999": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EthereumWallet"
+ "qualifiedName": "__type.captchaToken"
},
"1000": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EthereumWeb3Credentials"
+ "qualifiedName": "EthereumWallet"
},
"1001": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EthereumWeb3Credentials"
},
"1002": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1003": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.chain"
},
"1004": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.wallet"
},
"1005": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.statement"
},
"1006": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1007": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type"
},
"1008": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.url"
},
"1009": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signInWithEthereum"
+ "qualifiedName": "__type.captchaToken"
},
"1010": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signInWithEthereum"
},
"1011": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type"
},
"1012": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.chain"
},
"1013": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.message"
},
"1014": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.signature"
},
"1015": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1016": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1017": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Web3Credentials"
+ "qualifiedName": "__type.captchaToken"
},
"1018": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyOtpParams"
+ "qualifiedName": "Web3Credentials"
},
"1019": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams"
+ "qualifiedName": "VerifyOtpParams"
},
"1020": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.phone"
+ "qualifiedName": "VerifyMobileOtpParams"
},
"1021": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.token"
+ "qualifiedName": "VerifyMobileOtpParams.phone"
},
"1022": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.type"
+ "qualifiedName": "VerifyMobileOtpParams.token"
},
"1023": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.options"
+ "qualifiedName": "VerifyMobileOtpParams.type"
},
"1024": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyMobileOtpParams.options"
},
"1025": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1026": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1027": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams"
+ "qualifiedName": "__type.captchaToken"
},
"1028": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.email"
+ "qualifiedName": "VerifyEmailOtpParams"
},
"1029": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.token"
+ "qualifiedName": "VerifyEmailOtpParams.email"
},
"1030": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.type"
+ "qualifiedName": "VerifyEmailOtpParams.token"
},
"1031": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.options"
+ "qualifiedName": "VerifyEmailOtpParams.type"
},
"1032": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyEmailOtpParams.options"
},
"1033": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1034": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1035": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams"
+ "qualifiedName": "__type.captchaToken"
},
"1036": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.token_hash"
+ "qualifiedName": "VerifyTokenHashParams"
},
"1037": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.type"
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
},
"1038": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MobileOtpType"
+ "qualifiedName": "VerifyTokenHashParams.type"
},
"1039": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EmailOtpType"
+ "qualifiedName": "MobileOtpType"
},
"1040": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "ResendParams"
+ "qualifiedName": "EmailOtpType"
},
"1041": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "ResendParams"
},
"1042": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1043": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1044": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1045": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1046": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"1047": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.emailRedirectTo"
},
"1048": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1049": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1050": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.type"
},
"1051": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"1052": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1053": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1054": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithSSO"
+ "qualifiedName": "__type.captchaToken"
},
"1055": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInWithSSO"
},
"1056": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.providerId"
+ "qualifiedName": "__type"
},
"1057": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.providerId"
},
"1058": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1059": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1060": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1061": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.captchaToken"
},
"1062": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1063": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.domain"
+ "qualifiedName": "__type"
},
"1064": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.domain"
},
"1065": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1066": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1067": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.redirectTo"
},
"1068": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.captchaToken"
},
"1069": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateSignupLinkParams"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1070": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateSignupLinkParams"
},
"1071": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1072": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1073": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.password"
+ "qualifiedName": "__type.email"
},
"1074": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.password"
},
"1075": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ "qualifiedName": "__type.options"
},
"1076": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
},
"1077": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1078": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1079": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1080": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateRecoveryLinkParams"
+ "qualifiedName": "__type.options"
},
"1081": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateRecoveryLinkParams"
},
"1082": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1083": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1084": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1085": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateEmailChangeLinkParams"
+ "qualifiedName": "__type.options"
},
"1086": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateEmailChangeLinkParams"
},
"1087": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1088": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1089": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.newEmail"
+ "qualifiedName": "__type.email"
},
"1090": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.newEmail"
},
"1091": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions"
+ "qualifiedName": "__type.options"
},
"1092": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.data"
+ "qualifiedName": "GenerateLinkOptions"
},
"1093": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.redirectTo"
+ "qualifiedName": "GenerateLinkOptions.data"
},
"1094": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkParams"
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
},
"1095": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkResponse"
+ "qualifiedName": "GenerateLinkParams"
},
"1096": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkResponse"
},
"1097": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.properties"
+ "qualifiedName": "__type"
},
"1098": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.properties"
},
"1099": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkProperties"
+ "qualifiedName": "__type.user"
},
"1100": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkProperties"
},
"1101": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.action_link"
+ "qualifiedName": "__type"
},
"1102": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email_otp"
+ "qualifiedName": "__type.action_link"
},
"1103": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.hashed_token"
+ "qualifiedName": "__type.email_otp"
},
"1104": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_to"
+ "qualifiedName": "__type.hashed_token"
},
"1105": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.verification_type"
+ "qualifiedName": "__type.redirect_to"
},
"1106": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkType"
+ "qualifiedName": "__type.verification_type"
},
"1107": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAEnrollParams"
+ "qualifiedName": "GenerateLinkType"
},
"1108": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAUnenrollParams"
+ "qualifiedName": "MFAEnrollParams"
},
"1109": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAUnenrollParams"
},
"1110": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.factorId"
+ "qualifiedName": "__type"
},
"1111": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyTOTPParams"
+ "qualifiedName": "__type.factorId"
},
"1112": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyPhoneParams"
+ "qualifiedName": "MFAVerifyTOTPParams"
},
"1113": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFields"
+ "qualifiedName": "MFAVerifyPhoneParams"
},
"1114": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
},
"1115": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.webauthn"
+ "qualifiedName": "__type"
},
"1116": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.webauthn"
},
"1117": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParams"
+ "qualifiedName": "T"
},
"1118": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "MFAVerifyWebauthnParams"
},
"1119": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyParams"
+ "qualifiedName": "T"
},
"1120": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFATOTPChannel"
+ "qualifiedName": "MFAVerifyParams"
},
"1121": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeTOTPParams"
+ "qualifiedName": "MFATOTPChannel"
},
"1122": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengePhoneParams"
+ "qualifiedName": "MFAChallengeTOTPParams"
},
"1123": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeWebauthnParams"
+ "qualifiedName": "MFAChallengePhoneParams"
},
"1124": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeParams"
+ "qualifiedName": "MFAChallengeWebauthnParams"
},
"1125": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeAndVerifyParams"
+ "qualifiedName": "MFAChallengeParams"
},
"1126": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponseData"
+ "qualifiedName": "MFAChallengeAndVerifyParams"
},
"1127": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAVerifyResponseData"
},
"1128": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type"
},
"1129": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token_type"
+ "qualifiedName": "__type.access_token"
},
"1130": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.expires_in"
+ "qualifiedName": "__type.token_type"
},
"1131": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.refresh_token"
+ "qualifiedName": "__type.expires_in"
},
"1132": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.refresh_token"
},
"1133": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponse"
+ "qualifiedName": "__type.user"
},
"1134": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollResponse"
+ "qualifiedName": "AuthMFAVerifyResponse"
},
"1135": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAUnenrollResponse"
+ "qualifiedName": "AuthMFAEnrollResponse"
},
"1136": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAUnenrollResponse"
},
"1137": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1138": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ "qualifiedName": "__type.id"
},
"1139": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengePhoneResponse"
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
},
"1140": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
},
"1141": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
"1142": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
"1143": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
"1144": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAListFactorsResponse"
+ "qualifiedName": "AuthMFAChallengeResponse"
},
"1145": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAListFactorsResponse"
},
"1146": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.all"
+ "qualifiedName": "__type"
},
"1147": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type.all"
},
"1148": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthenticatorAssuranceLevels"
+ "qualifiedName": "T"
},
"1149": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ "qualifiedName": "AuthenticatorAssuranceLevels"
},
"1150": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
"1151": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.currentLevel"
+ "qualifiedName": "__type"
},
"1152": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nextLevel"
+ "qualifiedName": "__type.currentLevel"
},
"1153": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.currentAuthenticationMethods"
+ "qualifiedName": "__type.nextLevel"
},
"1154": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi"
+ "qualifiedName": "__type.currentAuthenticationMethods"
},
"1155": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "GoTrueMFAApi"
},
"1156": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60075,79 +60226,79 @@
},
"1157": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1158": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1159": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1160": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1161": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "issuer"
+ "qualifiedName": "friendlyName"
},
"1162": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "issuer"
},
"1163": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1164": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1165": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1166": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1167": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "friendlyName"
},
"1168": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "phone"
},
"1169": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1170": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1171": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1172": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1173": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1174": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1175": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "params"
},
"1176": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60155,243 +60306,243 @@
},
"1177": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1178": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1179": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1180": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1181": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1182": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1183": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1184": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1185": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1186": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1187": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1188": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1189": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "expires_at"
},
"1190": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1191": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1192": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1193": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1194": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "factorId"
},
"1195": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "channel"
},
"1196": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1197": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1198": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1199": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1200": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1201": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1202": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1203": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1204": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "expires_at"
},
"1205": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1206": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1207": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1208": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1209": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "factorId"
},
"1210": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1211": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.rpId"
+ "qualifiedName": "__type"
},
"1212": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.rpOrigins"
+ "qualifiedName": "__type.rpId"
},
"1213": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.rpOrigins"
},
"1214": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1215": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "data"
},
"1216": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "error"
},
"1217": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1218": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1219": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type"
},
"1220": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "id"
},
"1221": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "type"
},
"1222": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "expires_at"
},
"1223": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1224": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1225": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type.type"
},
"1226": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.credential_options"
},
"1227": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"1228": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"1229": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1230": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type.type"
},
"1231": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.credential_options"
},
"1232": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"1233": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type.publicKey"
},
"1234": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "error"
},
"1235": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1236": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "params"
},
"1237": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60399,83 +60550,83 @@
},
"1238": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1239": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1240": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1241": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1242": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1243": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1244": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1245": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1246": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1247": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1248": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1249": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1250": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1251": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1252": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1253": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1254": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "challengeId"
},
"1255": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "webauthn"
},
"1256": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1257": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "params"
},
"1258": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60483,11 +60634,11 @@
},
"1259": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1260": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "params"
},
"1261": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60495,23 +60646,23 @@
},
"1262": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1263": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1264": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1265": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "factorId"
},
"1266": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "code"
},
"1267": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60519,7 +60670,7 @@
},
"1268": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1269": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60527,71 +60678,71 @@
},
"1270": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "jwt"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1271": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.webauthn"
+ "qualifiedName": "jwt"
},
"1272": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ "qualifiedName": "GoTrueMFAApi.webauthn"
},
"1273": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
"1274": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1275": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ "qualifiedName": "__type.id"
},
"1276": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
"1277": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1278": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type.id"
},
"1279": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ "qualifiedName": "__type.userId"
},
"1280": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
},
"1281": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.factors"
+ "qualifiedName": "__type"
},
"1282": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsParams"
+ "qualifiedName": "__type.factors"
},
"1283": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
},
"1284": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type"
},
"1285": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi"
+ "qualifiedName": "__type.userId"
},
"1286": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "GoTrueAdminMFAApi"
},
"1287": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60599,11 +60750,11 @@
},
"1288": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1289": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "params"
},
"1290": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -60611,479 +60762,479 @@
},
"1291": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1292": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SupportedStorage"
+ "qualifiedName": "params"
},
"1293": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SupportedStorage"
},
"1294": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.isServer"
+ "qualifiedName": "__type"
},
"1295": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "InitializeResult"
+ "qualifiedName": "__type.isServer"
},
"1296": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "InitializeResult"
},
"1297": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type"
},
"1298": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "CallRefreshTokenResult"
+ "qualifiedName": "__type.error"
},
"1299": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Pagination"
+ "qualifiedName": "CallRefreshTokenResult"
},
"1300": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Pagination"
},
"1301": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nextPage"
+ "qualifiedName": "__type"
},
"1302": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.lastPage"
+ "qualifiedName": "__type.nextPage"
},
"1303": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.total"
+ "qualifiedName": "__type.lastPage"
},
"1304": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.total"
+ },
+ "1305": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "1306": {
+ "1307": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "PageParams"
},
- "1307": {
+ "1308": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1308": {
+ "1309": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.page"
},
- "1309": {
+ "1310": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.perPage"
},
- "1310": {
+ "1311": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "SignOut"
},
- "1311": {
+ "1312": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1312": {
+ "1313": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.scope"
},
- "1313": {
+ "1314": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollTOTPParams"
},
- "1314": {
+ "1315": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollPhoneParams"
},
- "1315": {
+ "1316": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollWebauthnParams"
},
- "1316": {
+ "1317": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollTOTPResponse"
},
- "1317": {
+ "1318": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollPhoneResponse"
},
- "1318": {
+ "1319": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
- "1319": {
+ "1320": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtHeader"
},
- "1320": {
+ "1321": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1321": {
+ "1322": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.alg"
},
- "1322": {
+ "1323": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.kid"
},
- "1323": {
+ "1324": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.typ"
},
- "1324": {
+ "1325": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "RequiredClaims"
},
- "1325": {
+ "1326": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1326": {
+ "1327": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1327": {
+ "1328": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1328": {
+ "1329": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1329": {
+ "1330": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1330": {
+ "1331": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1331": {
+ "1332": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1332": {
+ "1333": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1333": {
+ "1334": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1334": {
+ "1335": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload"
},
- "1335": {
+ "1336": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.email"
},
- "1336": {
+ "1337": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.phone"
},
- "1337": {
+ "1338": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.is_anonymous"
},
- "1338": {
+ "1339": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.jti"
},
- "1339": {
+ "1340": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.nbf"
},
- "1340": {
+ "1341": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.app_metadata"
},
- "1341": {
+ "1342": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.user_metadata"
},
- "1342": {
+ "1343": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.amr"
},
- "1343": {
+ "1344": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.ref"
},
- "1344": {
+ "1345": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1345": {
+ "1346": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1346": {
+ "1347": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1347": {
+ "1348": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1348": {
+ "1349": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1349": {
+ "1350": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1350": {
+ "1351": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1351": {
+ "1352": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1352": {
+ "1353": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.__index"
},
- "1354": {
+ "1355": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK"
},
- "1355": {
+ "1356": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.kty"
},
- "1356": {
+ "1357": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.key_ops"
},
- "1357": {
+ "1358": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.alg"
},
- "1358": {
+ "1359": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.kid"
},
- "1359": {
+ "1360": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.__index"
},
- "1361": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SIGN_OUT_SCOPES"
- },
"1362": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignOutScope"
+ "qualifiedName": "SIGN_OUT_SCOPES"
},
"1363": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientGrantType"
+ "qualifiedName": "SignOutScope"
},
"1364": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientResponseType"
+ "qualifiedName": "OAuthClientGrantType"
},
"1365": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientType"
+ "qualifiedName": "OAuthClientResponseType"
},
"1366": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientRegistrationType"
+ "qualifiedName": "OAuthClientType"
},
"1367": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClient"
+ "qualifiedName": "OAuthClientRegistrationType"
},
"1368": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClient"
},
"1369": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "__type"
},
"1370": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.client_id"
},
"1371": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_secret"
+ "qualifiedName": "__type.client_name"
},
"1372": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "__type.client_secret"
},
"1373": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "__type.client_type"
},
"1374": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "__type.token_endpoint_auth_method"
},
"1375": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.registration_type"
},
"1376": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_uri"
},
"1377": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.logo_uri"
},
"1378": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1379": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.grant_types"
},
"1380": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.response_types"
},
"1381": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "__type.scope"
},
"1382": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "__type.created_at"
},
"1383": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "__type.updated_at"
},
"1384": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "CreateOAuthClientParams"
},
"1385": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1386": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.client_name"
},
"1387": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
"1388": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1389": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.grant_types"
},
"1390": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.response_types"
},
"1391": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UpdateOAuthClientParams"
+ "qualifiedName": "__type.scope"
},
"1392": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "UpdateOAuthClientParams"
},
"1393": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1394": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.client_name"
},
"1395": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_uri"
},
"1396": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.logo_uri"
},
"1397": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1398": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "__type.grant_types"
},
"1399": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "OAuthClientResponse"
},
"1400": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientListResponse"
},
"1401": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1402": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1403": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1404": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.clients"
},
"1405": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.aud"
},
"1406": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.error"
},
"1407": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1408": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1409": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1410": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.clients"
},
"1411": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "__type.error"
},
"1412": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "GoTrueAdminOAuthApi"
},
"1413": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61091,11 +61242,11 @@
},
"1414": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1415": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "params"
},
"1416": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61103,11 +61254,11 @@
},
"1417": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1418": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "params"
},
"1419": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61115,11 +61266,11 @@
},
"1420": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1421": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "clientId"
},
"1422": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61127,15 +61278,15 @@
},
"1423": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1424": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "clientId"
},
"1425": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "params"
},
"1426": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61143,23 +61294,23 @@
},
"1427": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1428": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "clientId"
},
"1429": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1430": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.data"
},
"1431": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type.error"
},
"1432": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61167,131 +61318,131 @@
},
"1433": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1434": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationClient"
+ "qualifiedName": "clientId"
},
"1435": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationClient"
},
"1436": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1437": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.name"
+ "qualifiedName": "__type.id"
},
"1438": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.uri"
+ "qualifiedName": "__type.name"
},
"1439": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.uri"
},
"1440": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationDetails"
+ "qualifiedName": "__type.logo_uri"
},
"1441": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
"1442": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.authorization_id"
+ "qualifiedName": "__type"
},
"1443": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uri"
+ "qualifiedName": "__type.authorization_id"
},
"1444": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type.redirect_uri"
},
"1445": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.client"
},
"1446": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.user"
},
"1447": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type"
},
"1448": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.id"
},
"1449": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.email"
},
"1450": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthRedirect"
+ "qualifiedName": "__type.scope"
},
"1451": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthRedirect"
},
"1452": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_url"
+ "qualifiedName": "__type"
},
"1453": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ "qualifiedName": "__type.redirect_url"
},
"1454": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthConsentResponse"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
"1455": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthGrant"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
"1456": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthGrant"
},
"1457": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type"
},
"1458": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type.client"
},
"1459": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.granted_at"
+ "qualifiedName": "__type.scopes"
},
"1460": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthGrantsResponse"
+ "qualifiedName": "__type.granted_at"
},
"1461": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthRevokeGrantResponse"
+ "qualifiedName": "AuthOAuthGrantsResponse"
},
"1462": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthRevokeGrantResponse"
},
"1463": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi"
+ "qualifiedName": "__type"
},
"1464": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "AuthOAuthServerApi"
},
"1465": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61299,11 +61450,11 @@
},
"1466": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
"1467": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "authorizationId"
},
"1468": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61311,23 +61462,23 @@
},
"1469": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
"1470": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1471": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1472": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1473": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1474": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61335,23 +61486,23 @@
},
"1475": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
},
"1476": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1477": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1478": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1479": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.listGrants"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1480": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61359,7 +61510,7 @@
},
"1481": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
},
"1482": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -61367,19 +61518,19 @@
},
"1483": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
},
"1484": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "options"
},
"1485": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clientId"
+ "qualifiedName": "__type"
},
"1486": {
- "sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthError"
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.clientId"
},
"1487": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61387,11 +61538,11 @@
},
"1488": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthError"
},
"1489": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthApiError"
+ "qualifiedName": "error"
},
"1490": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61399,11 +61550,11 @@
},
"1491": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthApiError"
},
"1492": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthSessionMissingError"
+ "qualifiedName": "error"
},
"1493": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61411,11 +61562,11 @@
},
"1494": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthSessionMissingError"
},
"1495": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthImplicitGrantRedirectError"
+ "qualifiedName": "error"
},
"1496": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61423,11 +61574,11 @@
},
"1497": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthImplicitGrantRedirectError"
},
"1498": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthPKCECodeVerifierMissingError"
+ "qualifiedName": "error"
},
"1499": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61435,11 +61586,11 @@
},
"1500": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthPKCECodeVerifierMissingError"
},
"1501": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthRetryableFetchError"
+ "qualifiedName": "error"
},
"1502": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61447,11 +61598,11 @@
},
"1503": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthRetryableFetchError"
},
"1504": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "isAuthWeakPasswordError"
+ "qualifiedName": "error"
},
"1505": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
@@ -61459,835 +61610,835 @@
},
"1506": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "error"
+ "qualifiedName": "isAuthWeakPasswordError"
},
"1507": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "AuthError"
+ "qualifiedName": "error"
},
"1508": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "AuthError.__constructor"
+ "qualifiedName": "AuthError"
},
"1509": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "AuthError"
+ "qualifiedName": "AuthError.__constructor"
},
"1510": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "message"
+ "qualifiedName": "AuthError"
},
"1511": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "status"
+ "qualifiedName": "message"
},
"1512": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "code"
+ "qualifiedName": "status"
},
"1513": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
- "qualifiedName": "AuthError.code"
+ "qualifiedName": "code"
},
"1514": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1515": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1515": {
+ "1516": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1516": {
+ "1517": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1517": {
+ "1518": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1518": {
+ "1519": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1519": {
+ "1520": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1520": {
+ "1521": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1521": {
+ "1522": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1522": {
+ "1523": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1523": {
+ "1524": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1524": {
+ "1525": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1525": {
+ "1526": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1526": {
+ "1527": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1527": {
+ "1528": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1528": {
+ "1529": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1529": {
+ "1530": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1530": {
+ "1531": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1531": {
+ "1532": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1532": {
+ "1533": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1533": {
+ "1534": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1534": {
+ "1535": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1535": {
+ "1536": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1536": {
+ "1537": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1537": {
+ "1538": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1538": {
+ "1539": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1539": {
+ "1540": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1540": {
+ "1541": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1541": {
+ "1542": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "name"
},
- "1542": {
+ "1543": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1543": {
+ "1544": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1544": {
+ "1545": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1545": {
+ "1546": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1546": {
+ "1547": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1547": {
+ "1548": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1548": {
+ "1549": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1549": {
+ "1550": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1550": {
+ "1551": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1551": {
+ "1552": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1552": {
+ "1553": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1553": {
+ "1554": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1554": {
+ "1555": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1555": {
+ "1556": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1556": {
+ "1557": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1557": {
+ "1558": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1558": {
+ "1559": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1559": {
+ "1560": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1560": {
+ "1561": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1561": {
+ "1562": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1562": {
+ "1563": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1563": {
+ "1564": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1564": {
+ "1565": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1565": {
+ "1566": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1566": {
+ "1567": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1567": {
+ "1568": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1568": {
+ "1569": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1569": {
+ "1570": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1570": {
+ "1571": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1571": {
+ "1572": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1572": {
+ "1573": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1573": {
+ "1574": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1574": {
+ "1575": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1575": {
+ "1576": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1576": {
+ "1577": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1577": {
+ "1578": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1578": {
+ "1579": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "details"
},
- "1579": {
+ "1580": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1580": {
+ "1581": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1581": {
+ "1582": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1582": {
+ "1583": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1583": {
+ "1584": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1584": {
+ "1585": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1585": {
+ "1586": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1586": {
+ "1587": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1587": {
+ "1588": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1588": {
+ "1589": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1589": {
+ "1590": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.name"
},
- "1590": {
+ "1591": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.message"
},
- "1591": {
+ "1592": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.status"
},
- "1592": {
+ "1593": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.details"
},
- "1593": {
+ "1594": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1594": {
+ "1595": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1595": {
+ "1596": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1596": {
+ "1597": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1597": {
+ "1598": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1598": {
+ "1599": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1599": {
+ "1600": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1600": {
+ "1601": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1601": {
+ "1602": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1602": {
+ "1603": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1603": {
+ "1604": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1604": {
+ "1605": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1605": {
+ "1606": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "details"
},
- "1606": {
+ "1607": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1607": {
+ "1608": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1608": {
+ "1609": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1609": {
+ "1610": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1610": {
+ "1611": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1611": {
+ "1612": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1612": {
+ "1613": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1613": {
+ "1614": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1614": {
+ "1615": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1615": {
+ "1616": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1616": {
+ "1617": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.name"
},
- "1617": {
+ "1618": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.message"
},
- "1618": {
+ "1619": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.status"
},
- "1619": {
+ "1620": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.details"
},
- "1620": {
+ "1621": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1621": {
+ "1622": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1622": {
+ "1623": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1623": {
+ "1624": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1624": {
+ "1625": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1625": {
+ "1626": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1626": {
+ "1627": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1627": {
+ "1628": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1628": {
+ "1629": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError"
},
- "1629": {
+ "1630": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError.__constructor"
},
- "1630": {
+ "1631": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCECodeVerifierMissingError"
},
- "1631": {
+ "1632": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1632": {
+ "1633": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1633": {
+ "1634": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1634": {
+ "1635": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1635": {
+ "1636": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1636": {
+ "1637": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1637": {
+ "1638": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1638": {
+ "1639": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1639": {
+ "1640": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1640": {
+ "1641": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1641": {
+ "1642": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1642": {
+ "1643": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1643": {
+ "1644": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1644": {
+ "1645": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1645": {
+ "1646": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1646": {
+ "1647": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1647": {
+ "1648": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1648": {
+ "1649": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1649": {
+ "1650": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1650": {
+ "1651": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1651": {
+ "1652": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1652": {
+ "1653": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1653": {
+ "1654": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1654": {
+ "1655": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1655": {
+ "1656": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1656": {
+ "1657": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1657": {
+ "1658": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1658": {
+ "1659": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1659": {
+ "1660": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1660": {
+ "1661": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1661": {
+ "1662": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1662": {
+ "1663": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1663": {
+ "1664": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1664": {
+ "1665": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1665": {
+ "1666": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1666": {
+ "1667": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1667": {
+ "1668": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default"
},
- "1668": {
+ "1669": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.__constructor"
},
- "1669": {
+ "1670": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default"
},
- "1670": {
+ "1671": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "channel"
},
- "1671": {
+ "1672": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "opts"
},
- "1672": {
+ "1673": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.channel"
},
- "1673": {
+ "1674": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.state"
},
- "1674": {
+ "1675": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.pendingDiffs"
},
- "1675": {
+ "1676": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.joinRef"
},
- "1676": {
+ "1677": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.enabled"
},
- "1677": {
+ "1678": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.caller"
},
- "1678": {
+ "1679": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1679": {
+ "1680": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onJoin"
},
- "1680": {
+ "1681": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onLeave"
},
- "1681": {
+ "1682": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onSync"
},
- "1682": {
+ "1683": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1683": {
+ "1684": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1684": {
+ "1685": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default"
},
- "1685": {
+ "1686": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.__constructor"
},
- "1686": {
+ "1687": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default"
},
- "1687": {
+ "1688": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "topic"
},
- "1688": {
+ "1689": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "params"
},
- "1689": {
+ "1690": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "socket"
},
- "1690": {
+ "1691": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.topic"
},
- "1691": {
+ "1692": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.params"
},
- "1692": {
+ "1693": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.socket"
},
- "1693": {
+ "1694": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.bindings"
},
- "1694": {
+ "1695": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1695": {
+ "1696": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1697": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
"1698": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1699": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.filter"
+ "qualifiedName": "__type.type"
},
"1700": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.filter"
},
"1701": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1703": {
+ "1702": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.callback"
+ "qualifiedName": "__type.__index"
},
"1704": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.callback"
},
"1705": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.timeout"
+ "qualifiedName": "__type.id"
},
"1706": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.state"
+ "qualifiedName": "default.timeout"
},
"1707": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.joinedOnce"
+ "qualifiedName": "default.state"
},
"1708": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.joinPush"
+ "qualifiedName": "default.joinedOnce"
},
"1709": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.rejoinTimer"
+ "qualifiedName": "default.joinPush"
},
"1710": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.pushBuffer"
+ "qualifiedName": "default.rejoinTimer"
},
"1711": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.presence"
+ "qualifiedName": "default.pushBuffer"
},
"1712": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.broadcastEndpointURL"
+ "qualifiedName": "default.presence"
},
"1713": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.subTopic"
+ "qualifiedName": "default.broadcastEndpointURL"
},
"1714": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.private"
+ "qualifiedName": "default.subTopic"
},
"1715": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.subscribe"
+ "qualifiedName": "default.private"
},
"1716": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62295,11 +62446,11 @@
},
"1717": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "default.subscribe"
},
"1718": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1719": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62307,19 +62458,19 @@
},
"1720": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "status"
+ "qualifiedName": "__type"
},
"1721": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "err"
+ "qualifiedName": "status"
},
"1722": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "timeout"
+ "qualifiedName": "err"
},
"1723": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.presenceState"
+ "qualifiedName": "timeout"
},
"1724": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62327,75 +62478,75 @@
},
"1725": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.presenceState"
},
"1726": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1727": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1728": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1729": {
+ "1730": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1730": {
+ "1731": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.track"
},
- "1731": {
+ "1732": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.track"
},
- "1732": {
+ "1733": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1733": {
+ "1734": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1734": {
+ "1735": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1736": {
+ "1737": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1737": {
+ "1738": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1738": {
+ "1739": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1740": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.untrack"
- },
"1741": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.untrack"
},
"1742": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "opts"
+ "qualifiedName": "default.untrack"
},
"1743": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "opts"
},
"1744": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1746": {
+ "1745": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.__index"
},
"1747": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62403,27 +62554,27 @@
},
"1748": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "default.on"
},
"1749": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1750": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1751": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1752": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1753": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1754": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62431,43 +62582,43 @@
},
"1755": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type"
},
"1756": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1757": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1758": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1760": {
+ "1759": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1761": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1762": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1763": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1764": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1765": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1766": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62475,47 +62626,47 @@
},
"1767": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1768": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1769": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1770": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1771": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1773": {
+ "1772": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1774": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1775": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1776": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1777": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1778": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1779": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62523,39 +62674,39 @@
},
"1780": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1781": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1782": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1783": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1784": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1786": {
+ "1785": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1787": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1788": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "filter"
},
"1789": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1790": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62563,39 +62714,39 @@
},
"1791": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1792": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1793": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1794": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1795": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1797": {
+ "1796": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1798": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1799": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "filter"
},
"1800": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1801": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62603,39 +62754,39 @@
},
"1802": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1803": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1804": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1805": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1806": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1808": {
+ "1807": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1809": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1810": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "filter"
},
"1811": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1812": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62643,39 +62794,39 @@
},
"1813": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1814": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1815": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1816": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1817": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1819": {
+ "1818": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1820": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1821": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "filter"
},
"1822": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1823": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62683,39 +62834,39 @@
},
"1824": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1825": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1826": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1827": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1828": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1830": {
+ "1829": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1831": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1832": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "filter"
},
"1833": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1834": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62723,35 +62874,35 @@
},
"1835": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1836": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "payload"
},
"1837": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "default.on"
},
"1838": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1839": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1840": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1841": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1842": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1843": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62759,79 +62910,79 @@
},
"1844": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1845": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1846": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1847": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1848": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.meta"
+ "qualifiedName": "__type.event"
},
"1849": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.meta"
},
"1850": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.replayed"
+ "qualifiedName": "__type"
},
"1851": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.replayed"
},
"1852": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.id"
},
- "1854": {
+ "1853": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.__index"
},
"1855": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1856": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1857": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1859": {
+ "1858": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1860": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1861": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1862": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1863": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1864": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1865": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62839,71 +62990,71 @@
},
"1866": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1867": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1868": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1869": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1870": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.meta"
+ "qualifiedName": "__type.event"
},
"1871": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.meta"
},
"1872": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.replayed"
+ "qualifiedName": "__type"
},
"1873": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.replayed"
},
"1874": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.id"
},
"1875": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.payload"
},
"1876": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1877": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "T"
},
"1878": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1879": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1880": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1881": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1882": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1883": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62911,63 +63062,63 @@
},
"1884": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1885": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1886": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1887": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1888": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.event"
},
"1889": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.payload"
},
"1890": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1891": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1892": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1894": {
+ "1893": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1895": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1896": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1897": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1898": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1899": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1900": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -62975,63 +63126,63 @@
},
"1901": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1902": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1903": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1904": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1905": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.event"
},
"1906": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.payload"
},
"1907": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1908": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1909": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1911": {
+ "1910": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1912": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1913": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1914": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1915": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1916": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1917": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63039,63 +63190,63 @@
},
"1918": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1919": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1920": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1921": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1922": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.event"
},
"1923": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.payload"
},
"1924": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1925": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1926": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1928": {
+ "1927": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.__index"
},
"1929": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "type"
},
"1930": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "filter"
},
"1931": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type"
},
"1932": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1933": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1934": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63103,59 +63254,59 @@
},
"1935": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1936": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1937": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1938": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1939": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.event"
},
"1940": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
+ "qualifiedName": "__type.payload"
},
"1941": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
+ "qualifiedName": "default.on"
},
"1942": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"1943": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1944": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1945": {
+ "1946": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1946": {
+ "1947": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1947": {
+ "1948": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1948": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
- },
"1949": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1950": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63163,11 +63314,11 @@
},
"1951": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1952": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.httpSend"
+ "qualifiedName": "payload"
},
"1953": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63175,51 +63326,51 @@
},
"1954": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "event"
+ "qualifiedName": "default.httpSend"
},
"1955": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "event"
},
"1956": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "opts"
+ "qualifiedName": "payload"
},
"1957": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "opts"
},
"1958": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.timeout"
+ "qualifiedName": "__type"
},
"1959": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.timeout"
},
"1960": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.success"
+ "qualifiedName": "__type"
},
"1961": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.success"
},
"1962": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.success"
+ "qualifiedName": "__type"
},
"1963": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.status"
+ "qualifiedName": "__type.success"
},
"1964": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.status"
},
"1965": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.send"
+ "qualifiedName": "__type.error"
},
"1966": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63227,43 +63378,43 @@
},
"1967": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "args"
+ "qualifiedName": "default.send"
},
"1968": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "args"
},
"1969": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1970": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
+ "qualifiedName": "__type.type"
},
"1971": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
+ "qualifiedName": "__type.event"
},
"1972": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.payload"
},
- "1974": {
+ "1973": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "opts"
+ "qualifiedName": "__type.__index"
},
"1975": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "opts"
},
"1976": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1978": {
+ "1977": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.updateJoinPayload"
+ "qualifiedName": "__type.__index"
},
"1979": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63271,19 +63422,19 @@
},
"1980": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "default.updateJoinPayload"
},
"1981": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"1982": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type"
},
- "1984": {
+ "1983": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.unsubscribe"
+ "qualifiedName": "__type.__index"
},
"1985": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63291,11 +63442,11 @@
},
"1986": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "timeout"
+ "qualifiedName": "default.unsubscribe"
},
"1987": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.teardown"
+ "qualifiedName": "timeout"
},
"1988": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -63303,275 +63454,275 @@
},
"1989": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "RealtimeChannelOptions"
+ "qualifiedName": "default.teardown"
},
"1990": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RealtimeChannelOptions"
},
"1991": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.config"
+ "qualifiedName": "__type"
},
"1992": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.config"
},
"1993": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.broadcast"
+ "qualifiedName": "__type"
},
"1994": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.broadcast"
},
"1995": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.self"
+ "qualifiedName": "__type"
},
"1996": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.ack"
+ "qualifiedName": "__type.self"
},
"1997": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.replay"
+ "qualifiedName": "__type.ack"
},
"1998": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.presence"
+ "qualifiedName": "__type.replay"
},
"1999": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.presence"
+ },
+ "2000": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2000": {
+ "2001": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.key"
},
- "2001": {
+ "2002": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.enabled"
},
- "2002": {
+ "2003": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.private"
},
- "2003": {
+ "2004": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimeChannelSendResponse"
},
- "2004": {
+ "2005": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "2005": {
+ "2006": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.__constructor"
},
- "2006": {
+ "2007": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "2007": {
+ "2008": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "endPoint"
},
- "2008": {
+ "2009": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "options"
},
- "2009": {
+ "2010": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.accessTokenValue"
},
- "2010": {
+ "2011": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.apiKey"
},
- "2012": {
+ "2013": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.channels"
},
- "2013": {
+ "2014": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.endPoint"
},
- "2014": {
+ "2015": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.httpEndpoint"
},
- "2015": {
+ "2016": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.headers"
},
- "2016": {
+ "2017": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2017": {
+ "2018": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2019": {
+ "2020": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.params"
},
- "2020": {
+ "2021": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2021": {
+ "2022": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2023": {
+ "2024": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.timeout"
},
- "2024": {
+ "2025": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.transport"
},
- "2025": {
+ "2026": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatIntervalMs"
},
- "2026": {
+ "2027": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatTimer"
},
- "2027": {
+ "2028": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.pendingHeartbeatRef"
},
- "2028": {
+ "2029": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatCallback"
},
- "2029": {
+ "2030": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2030": {
+ "2031": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2031": {
+ "2032": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "2032": {
+ "2033": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "latency"
},
- "2033": {
+ "2034": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.ref"
},
- "2034": {
+ "2035": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.reconnectTimer"
},
- "2035": {
+ "2036": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.vsn"
},
- "2036": {
+ "2037": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.logger"
},
- "2037": {
+ "2038": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.logLevel"
},
- "2038": {
+ "2039": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.encode"
},
- "2039": {
+ "2040": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.decode"
},
- "2040": {
+ "2041": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.reconnectAfterMs"
},
- "2041": {
+ "2042": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.conn"
},
- "2042": {
+ "2043": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.sendBuffer"
},
- "2043": {
+ "2044": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.serializer"
},
- "2044": {
+ "2045": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.stateChangeCallbacks"
},
- "2045": {
+ "2046": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2046": {
+ "2047": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.open"
},
- "2047": {
+ "2048": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.close"
},
- "2048": {
+ "2049": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.error"
},
- "2049": {
+ "2050": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.message"
},
- "2050": {
+ "2051": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.fetch"
},
- "2051": {
+ "2052": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "2052": {
+ "2053": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "2053": {
+ "2054": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "input"
},
- "2054": {
+ "2055": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "init"
},
- "2055": {
+ "2056": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
- "2056": {
+ "2057": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
- "2057": {
+ "2058": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
- "2058": {
- "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.accessToken"
- },
"2059": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "default.accessToken"
},
"2060": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63579,19 +63730,19 @@
},
"2061": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.worker"
+ "qualifiedName": "__type"
},
"2062": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.workerUrl"
+ "qualifiedName": "default.worker"
},
"2063": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.workerRef"
+ "qualifiedName": "default.workerUrl"
},
- "2068": {
+ "2064": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.connect"
+ "qualifiedName": "default.workerRef"
},
"2069": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63599,7 +63750,7 @@
},
"2070": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.endpointURL"
+ "qualifiedName": "default.connect"
},
"2071": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63607,7 +63758,7 @@
},
"2072": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.disconnect"
+ "qualifiedName": "default.endpointURL"
},
"2073": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63615,15 +63766,15 @@
},
"2074": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "code"
+ "qualifiedName": "default.disconnect"
},
"2075": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "reason"
+ "qualifiedName": "code"
},
"2076": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.getChannels"
+ "qualifiedName": "reason"
},
"2077": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63631,7 +63782,7 @@
},
"2078": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.removeChannel"
+ "qualifiedName": "default.getChannels"
},
"2079": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63639,11 +63790,11 @@
},
"2080": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "default.removeChannel"
},
"2081": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.removeAllChannels"
+ "qualifiedName": "channel"
},
"2082": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63651,7 +63802,7 @@
},
"2083": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.log"
+ "qualifiedName": "default.removeAllChannels"
},
"2084": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63659,19 +63810,19 @@
},
"2085": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "kind"
+ "qualifiedName": "default.log"
},
"2086": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "msg"
+ "qualifiedName": "kind"
},
"2087": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "data"
+ "qualifiedName": "msg"
},
"2088": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.connectionState"
+ "qualifiedName": "data"
},
"2089": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63679,7 +63830,7 @@
},
"2090": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.isConnected"
+ "qualifiedName": "default.connectionState"
},
"2091": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63687,7 +63838,7 @@
},
"2092": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.isConnecting"
+ "qualifiedName": "default.isConnected"
},
"2093": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63695,7 +63846,7 @@
},
"2094": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.isDisconnecting"
+ "qualifiedName": "default.isConnecting"
},
"2095": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63703,7 +63854,7 @@
},
"2096": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.channel"
+ "qualifiedName": "default.isDisconnecting"
},
"2097": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63711,15 +63862,15 @@
},
"2098": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "topic"
+ "qualifiedName": "default.channel"
},
"2099": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "params"
+ "qualifiedName": "topic"
},
"2100": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.push"
+ "qualifiedName": "params"
},
"2101": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63727,11 +63878,11 @@
},
"2102": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "data"
+ "qualifiedName": "default.push"
},
"2103": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.setAuth"
+ "qualifiedName": "data"
},
"2104": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63739,11 +63890,11 @@
},
"2105": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "token"
+ "qualifiedName": "default.setAuth"
},
"2106": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.sendHeartbeat"
+ "qualifiedName": "token"
},
"2107": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63751,7 +63902,7 @@
},
"2108": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.onHeartbeat"
+ "qualifiedName": "default.sendHeartbeat"
},
"2109": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63759,11 +63910,11 @@
},
"2110": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "default.onHeartbeat"
},
"2111": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"2112": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63771,47 +63922,47 @@
},
"2113": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "status"
+ "qualifiedName": "__type"
},
"2114": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "latency"
+ "qualifiedName": "status"
},
"2115": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default.flushSendBuffer"
+ "qualifiedName": "latency"
},
"2116": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.flushSendBuffer"
},
- "2118": {
+ "2117": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "RealtimeClientOptions"
+ "qualifiedName": "default.flushSendBuffer"
},
"2119": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "RealtimeClientOptions"
},
"2120": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.transport"
+ "qualifiedName": "__type"
},
"2121": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.timeout"
+ "qualifiedName": "__type.transport"
},
"2122": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.heartbeatIntervalMs"
+ "qualifiedName": "__type.timeout"
},
"2123": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.heartbeatCallback"
+ "qualifiedName": "__type.heartbeatIntervalMs"
},
"2124": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.heartbeatCallback"
},
"2125": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -63819,463 +63970,463 @@
},
"2126": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "status"
+ "qualifiedName": "__type"
},
"2127": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "latency"
+ "qualifiedName": "status"
},
"2128": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.vsn"
+ "qualifiedName": "latency"
},
"2129": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.logger"
+ "qualifiedName": "__type.vsn"
},
"2130": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.encode"
+ "qualifiedName": "__type.logger"
},
"2131": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.decode"
+ "qualifiedName": "__type.encode"
},
"2132": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.reconnectAfterMs"
+ "qualifiedName": "__type.decode"
},
"2133": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type.headers"
+ "qualifiedName": "__type.reconnectAfterMs"
},
"2134": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.headers"
},
"2135": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
+ },
+ "2136": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2137": {
+ "2138": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.params"
},
- "2138": {
+ "2139": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2139": {
+ "2140": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2141": {
+ "2142": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.log_level"
},
- "2142": {
+ "2143": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.logLevel"
},
- "2143": {
+ "2144": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.fetch"
},
- "2144": {
+ "2145": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.worker"
},
- "2145": {
+ "2146": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.workerUrl"
},
- "2146": {
+ "2147": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.accessToken"
},
- "2147": {
+ "2148": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2148": {
+ "2149": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2149": {
+ "2150": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeMessage"
},
- "2150": {
+ "2151": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2151": {
+ "2152": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.topic"
},
- "2152": {
+ "2153": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.event"
},
- "2153": {
+ "2154": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.payload"
},
- "2154": {
+ "2155": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.ref"
},
- "2155": {
+ "2156": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.join_ref"
},
- "2156": {
+ "2157": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesFilter"
},
- "2157": {
+ "2158": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2158": {
+ "2159": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "2159": {
+ "2160": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.schema"
},
- "2160": {
+ "2161": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.table"
},
- "2161": {
+ "2162": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.filter"
},
- "2162": {
+ "2163": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2163": {
+ "2164": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesPayload"
},
- "2164": {
+ "2165": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2165": {
+ "2166": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2166": {
+ "2167": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2168": {
+ "2169": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresInsertPayload"
},
- "2169": {
+ "2170": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2170": {
+ "2171": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2171": {
+ "2172": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2172": {
+ "2173": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2173": {
+ "2174": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2174": {
+ "2175": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2175": {
+ "2176": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2176": {
+ "2177": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2178": {
+ "2179": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresUpdatePayload"
},
- "2179": {
+ "2180": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2180": {
+ "2181": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2181": {
+ "2182": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2182": {
+ "2183": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2183": {
+ "2184": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2184": {
+ "2185": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2185": {
+ "2186": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2187": {
+ "2188": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresDeletePayload"
},
- "2188": {
+ "2189": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2189": {
+ "2190": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2190": {
+ "2191": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2191": {
+ "2192": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2192": {
+ "2193": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2193": {
+ "2194": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2194": {
+ "2195": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2195": {
+ "2196": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2197": {
+ "2198": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceJoinPayload"
},
- "2198": {
+ "2199": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2199": {
+ "2200": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "2200": {
+ "2201": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "2201": {
+ "2202": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "2202": {
+ "2203": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.newPresences"
},
- "2203": {
+ "2204": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2204": {
+ "2205": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2205": {
+ "2206": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2207": {
+ "2208": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceLeavePayload"
},
- "2208": {
+ "2209": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2209": {
+ "2210": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "2210": {
+ "2211": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "2211": {
+ "2212": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "2212": {
+ "2213": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.leftPresences"
},
- "2213": {
+ "2214": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2214": {
+ "2215": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2215": {
+ "2216": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2217": {
+ "2218": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceState"
},
- "2218": {
+ "2219": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2219": {
+ "2220": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2221": {
+ "2222": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2222": {
+ "2223": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2223": {
+ "2224": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2225": {
+ "2226": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2226": {
+ "2227": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeRemoveChannelResponse"
},
- "2227": {
+ "2228": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES"
},
- "2228": {
+ "2229": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST"
},
- "2229": {
+ "2230": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE"
},
- "2230": {
+ "2231": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES"
},
- "2231": {
+ "2232": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM"
},
- "2232": {
+ "2233": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT"
},
- "2233": {
+ "2234": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
},
- "2234": {
+ "2235": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
},
- "2235": {
+ "2236": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
},
- "2236": {
+ "2237": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
},
- "2237": {
+ "2238": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS"
},
- "2238": {
+ "2239": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC"
},
- "2239": {
+ "2240": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN"
},
- "2240": {
+ "2241": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE"
},
- "2241": {
+ "2242": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES"
},
- "2242": {
+ "2243": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED"
},
- "2243": {
+ "2244": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT"
},
- "2244": {
+ "2245": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED"
},
- "2245": {
+ "2246": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR"
},
- "2246": {
+ "2247": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_CHANNEL_STATES"
},
- "2247": {
+ "2248": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory"
},
- "2249": {
- "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketFactory.getWebSocketConstructor"
- },
"2250": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
"2251": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "__type"
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
"2252": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
@@ -64283,15 +64434,15 @@
},
"2253": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "url"
+ "qualifiedName": "__type"
},
"2254": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "protocols"
+ "qualifiedName": "url"
},
"2255": {
- "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketFactory.createWebSocket"
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "protocols"
},
"2256": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64299,55 +64450,55 @@
},
"2257": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "url"
+ "qualifiedName": "WebSocketFactory.createWebSocket"
},
"2258": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "protocols"
+ "qualifiedName": "url"
},
"2259": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketFactory.isWebSocketSupported"
+ "qualifiedName": "protocols"
},
"2260": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "2263": {
+ "2261": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike"
+ "qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
"2264": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.CONNECTING"
+ "qualifiedName": "WebSocketLike"
},
"2265": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.OPEN"
+ "qualifiedName": "WebSocketLike.CONNECTING"
},
"2266": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.CLOSING"
+ "qualifiedName": "WebSocketLike.OPEN"
},
"2267": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.CLOSED"
+ "qualifiedName": "WebSocketLike.CLOSING"
},
"2268": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.readyState"
+ "qualifiedName": "WebSocketLike.CLOSED"
},
"2269": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.url"
+ "qualifiedName": "WebSocketLike.readyState"
},
"2270": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.protocol"
+ "qualifiedName": "WebSocketLike.url"
},
"2271": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.close"
+ "qualifiedName": "WebSocketLike.protocol"
},
"2272": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64355,15 +64506,15 @@
},
"2273": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "code"
+ "qualifiedName": "WebSocketLike.close"
},
"2274": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "reason"
+ "qualifiedName": "code"
},
"2275": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.send"
+ "qualifiedName": "reason"
},
"2276": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64371,15 +64522,15 @@
},
"2277": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "data"
+ "qualifiedName": "WebSocketLike.send"
},
"2278": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.onopen"
+ "qualifiedName": "data"
},
"2279": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WebSocketLike.onopen"
},
"2280": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64387,19 +64538,19 @@
},
"2281": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "this"
+ "qualifiedName": "__type"
},
"2282": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "ev"
+ "qualifiedName": "this"
},
"2283": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.onmessage"
+ "qualifiedName": "ev"
},
"2284": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WebSocketLike.onmessage"
},
"2285": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64407,19 +64558,19 @@
},
"2286": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "this"
+ "qualifiedName": "__type"
},
"2287": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "ev"
+ "qualifiedName": "this"
},
"2288": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.onclose"
+ "qualifiedName": "ev"
},
"2289": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WebSocketLike.onclose"
},
"2290": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64427,19 +64578,19 @@
},
"2291": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "this"
+ "qualifiedName": "__type"
},
"2292": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "ev"
+ "qualifiedName": "this"
},
"2293": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.onerror"
+ "qualifiedName": "ev"
},
"2294": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WebSocketLike.onerror"
},
"2295": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64447,15 +64598,15 @@
},
"2296": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "this"
+ "qualifiedName": "__type"
},
"2297": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "ev"
+ "qualifiedName": "this"
},
"2298": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.addEventListener"
+ "qualifiedName": "ev"
},
"2299": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64463,15 +64614,15 @@
},
"2300": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "type"
+ "qualifiedName": "WebSocketLike.addEventListener"
},
"2301": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "listener"
+ "qualifiedName": "type"
},
"2302": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.removeEventListener"
+ "qualifiedName": "listener"
},
"2303": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64479,31 +64630,31 @@
},
"2304": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "type"
+ "qualifiedName": "WebSocketLike.removeEventListener"
},
"2305": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "listener"
+ "qualifiedName": "type"
},
"2306": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.binaryType"
+ "qualifiedName": "listener"
},
"2307": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.bufferedAmount"
+ "qualifiedName": "WebSocketLike.binaryType"
},
"2308": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.extensions"
+ "qualifiedName": "WebSocketLike.bufferedAmount"
},
"2309": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "WebSocketLike.dispatchEvent"
+ "qualifiedName": "WebSocketLike.extensions"
},
"2310": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "WebSocketLike.dispatchEvent"
},
"2311": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
@@ -64511,11 +64662,11 @@
},
"2312": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type"
},
"2313": {
- "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "WebSocketLikeConstructor"
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "event"
},
"2314": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
@@ -64527,13 +64678,17 @@
},
"2316": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "address"
+ "qualifiedName": "WebSocketLikeConstructor"
},
"2317": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "subprotocols"
+ "qualifiedName": "address"
},
"2318": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "subprotocols"
+ },
+ "2319": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor.__index"
}
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json
index 012c4b3952deb..34a6c14381eb2 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": 47,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/cors.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/cors.ts#L47"
}
],
"type": {
@@ -106,7 +106,7 @@
"fileName": "packages/core/supabase-js/src/cors.ts",
"line": 71,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/cors.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/cors.ts#L71"
}
],
"type": {
@@ -133,7 +133,7 @@
"fileName": "packages/core/supabase-js/src/cors.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/cors.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/cors.ts#L1"
}
]
},
@@ -439,14 +439,14 @@
]
},
{
- "id": 2227,
+ "id": 2228,
"name": "REALTIME_LISTEN_TYPES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2228,
+ "id": 2229,
"name": "BROADCAST",
"variant": "declaration",
"kind": 16,
@@ -464,7 +464,7 @@
}
},
{
- "id": 2230,
+ "id": 2231,
"name": "POSTGRES_CHANGES",
"variant": "declaration",
"kind": 16,
@@ -482,7 +482,7 @@
}
},
{
- "id": 2229,
+ "id": 2230,
"name": "PRESENCE",
"variant": "declaration",
"kind": 16,
@@ -500,7 +500,7 @@
}
},
{
- "id": 2231,
+ "id": 2232,
"name": "SYSTEM",
"variant": "declaration",
"kind": 16,
@@ -521,7 +521,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2228, 2230, 2229, 2231]
+ "children": [2229, 2231, 2230, 2232]
}
],
"sources": [
@@ -533,14 +533,14 @@
]
},
{
- "id": 2232,
+ "id": 2233,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2233,
+ "id": 2234,
"name": "ALL",
"variant": "declaration",
"kind": 16,
@@ -558,7 +558,7 @@
}
},
{
- "id": 2236,
+ "id": 2237,
"name": "DELETE",
"variant": "declaration",
"kind": 16,
@@ -576,7 +576,7 @@
}
},
{
- "id": 2234,
+ "id": 2235,
"name": "INSERT",
"variant": "declaration",
"kind": 16,
@@ -594,7 +594,7 @@
}
},
{
- "id": 2235,
+ "id": 2236,
"name": "UPDATE",
"variant": "declaration",
"kind": 16,
@@ -615,7 +615,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2233, 2236, 2234, 2235]
+ "children": [2234, 2237, 2235, 2236]
}
],
"sources": [
@@ -627,14 +627,14 @@
]
},
{
- "id": 2237,
+ "id": 2238,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2239,
+ "id": 2240,
"name": "JOIN",
"variant": "declaration",
"kind": 16,
@@ -652,7 +652,7 @@
}
},
{
- "id": 2240,
+ "id": 2241,
"name": "LEAVE",
"variant": "declaration",
"kind": 16,
@@ -670,7 +670,7 @@
}
},
{
- "id": 2238,
+ "id": 2239,
"name": "SYNC",
"variant": "declaration",
"kind": 16,
@@ -691,7 +691,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2239, 2240, 2238]
+ "children": [2240, 2241, 2239]
}
],
"sources": [
@@ -703,14 +703,14 @@
]
},
{
- "id": 2241,
+ "id": 2242,
"name": "REALTIME_SUBSCRIBE_STATES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2245,
+ "id": 2246,
"name": "CHANNEL_ERROR",
"variant": "declaration",
"kind": 16,
@@ -728,7 +728,7 @@
}
},
{
- "id": 2244,
+ "id": 2245,
"name": "CLOSED",
"variant": "declaration",
"kind": 16,
@@ -746,7 +746,7 @@
}
},
{
- "id": 2242,
+ "id": 2243,
"name": "SUBSCRIBED",
"variant": "declaration",
"kind": 16,
@@ -764,7 +764,7 @@
}
},
{
- "id": 2243,
+ "id": 2244,
"name": "TIMED_OUT",
"variant": "declaration",
"kind": 16,
@@ -785,7 +785,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2245, 2244, 2242, 2243]
+ "children": [2246, 2245, 2243, 2244]
}
],
"sources": [
@@ -797,7 +797,7 @@
]
},
{
- "id": 1517,
+ "id": 1518,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -823,7 +823,7 @@
},
"children": [
{
- "id": 1518,
+ "id": 1519,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -837,7 +837,7 @@
],
"signatures": [
{
- "id": 1519,
+ "id": 1520,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -851,7 +851,7 @@
],
"parameters": [
{
- "id": 1520,
+ "id": 1521,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -862,7 +862,7 @@
}
},
{
- "id": 1521,
+ "id": 1522,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -873,7 +873,7 @@
}
},
{
- "id": 1522,
+ "id": 1523,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -895,25 +895,25 @@
],
"type": {
"type": "reference",
- "target": 1517,
+ "target": 1518,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1509,
+ "target": 1510,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1508,
+ "target": 1509,
"name": "AuthError.constructor"
}
},
{
- "id": 1526,
+ "id": 1527,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -934,12 +934,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1516,
+ "target": 1517,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1524,
+ "id": 1525,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -996,7 +996,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1525,
+ "id": 1526,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1009,12 +1009,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1513,
+ "target": 1514,
"name": "AuthError.code"
}
},
{
- "id": 1523,
+ "id": 1524,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1040,7 +1040,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1515,
+ "target": 1516,
"name": "AuthError.status"
}
}
@@ -1048,11 +1048,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1518]
+ "children": [1519]
},
{
"title": "Properties",
- "children": [1526, 1524, 1523]
+ "children": [1527, 1525, 1524]
}
],
"sources": [
@@ -1065,14 +1065,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1507,
+ "id": 1508,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -1098,7 +1098,7 @@
},
"children": [
{
- "id": 1508,
+ "id": 1509,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1112,7 +1112,7 @@
],
"signatures": [
{
- "id": 1509,
+ "id": 1510,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -1126,7 +1126,7 @@
],
"parameters": [
{
- "id": 1510,
+ "id": 1511,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1137,7 +1137,7 @@
}
},
{
- "id": 1511,
+ "id": 1512,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -1150,7 +1150,7 @@
}
},
{
- "id": 1512,
+ "id": 1513,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -1165,7 +1165,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -1183,7 +1183,7 @@
}
},
{
- "id": 1516,
+ "id": 1517,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1203,7 +1203,7 @@
}
},
{
- "id": 1513,
+ "id": 1514,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1258,7 +1258,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1514,
+ "id": 1515,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1271,7 +1271,7 @@
}
},
{
- "id": 1515,
+ "id": 1516,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1309,11 +1309,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1508]
+ "children": [1509]
},
{
"title": "Properties",
- "children": [1516, 1513, 1515]
+ "children": [1517, 1514, 1516]
}
],
"sources": [
@@ -1337,23 +1337,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1517,
+ "target": 1518,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1527,
+ "target": 1528,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError"
}
]
},
{
- "id": 1574,
+ "id": 1575,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -1379,7 +1379,7 @@
},
"children": [
{
- "id": 1575,
+ "id": 1576,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1393,7 +1393,7 @@
],
"signatures": [
{
- "id": 1576,
+ "id": 1577,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -1407,7 +1407,7 @@
],
"parameters": [
{
- "id": 1577,
+ "id": 1578,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1418,7 +1418,7 @@
}
},
{
- "id": 1578,
+ "id": 1579,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -1435,14 +1435,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1579,
+ "id": 1580,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1581,
+ "id": 1582,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1460,7 +1460,7 @@
}
},
{
- "id": 1580,
+ "id": 1581,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1481,7 +1481,7 @@
"groups": [
{
"title": "Properties",
- "children": [1581, 1580]
+ "children": [1582, 1581]
}
],
"sources": [
@@ -1499,25 +1499,25 @@
],
"type": {
"type": "reference",
- "target": 1574,
+ "target": 1575,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1600,
+ "id": 1601,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1538,12 +1538,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1598,
+ "id": 1599,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1600,7 +1600,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1599,
+ "id": 1600,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1613,12 +1613,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1582,
+ "id": 1583,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1640,14 +1640,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1583,
+ "id": 1584,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1585,
+ "id": 1586,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1665,7 +1665,7 @@
}
},
{
- "id": 1584,
+ "id": 1585,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1686,7 +1686,7 @@
"groups": [
{
"title": "Properties",
- "children": [1585, 1584]
+ "children": [1586, 1585]
}
],
"sources": [
@@ -1702,7 +1702,7 @@
}
},
{
- "id": 1596,
+ "id": 1597,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1722,12 +1722,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1597,
+ "id": 1598,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1755,12 +1755,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
},
{
- "id": 1586,
+ "id": 1587,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -1774,7 +1774,7 @@
],
"signatures": [
{
- "id": 1587,
+ "id": 1588,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -1789,14 +1789,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1588,
+ "id": 1589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1592,
+ "id": 1593,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1818,14 +1818,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1593,
+ "id": 1594,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1595,
+ "id": 1596,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1843,7 +1843,7 @@
}
},
{
- "id": 1594,
+ "id": 1595,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1864,7 +1864,7 @@
"groups": [
{
"title": "Properties",
- "children": [1595, 1594]
+ "children": [1596, 1595]
}
],
"sources": [
@@ -1880,7 +1880,7 @@
}
},
{
- "id": 1590,
+ "id": 1591,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -1898,7 +1898,7 @@
}
},
{
- "id": 1589,
+ "id": 1590,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1916,7 +1916,7 @@
}
},
{
- "id": 1591,
+ "id": 1592,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1937,7 +1937,7 @@
"groups": [
{
"title": "Properties",
- "children": [1592, 1590, 1589, 1591]
+ "children": [1593, 1591, 1590, 1592]
}
],
"sources": [
@@ -1956,15 +1956,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1575]
+ "children": [1576]
},
{
"title": "Properties",
- "children": [1600, 1598, 1582, 1596, 1597]
+ "children": [1601, 1599, 1583, 1597, 1598]
},
{
"title": "Methods",
- "children": [1586]
+ "children": [1587]
}
],
"sources": [
@@ -1977,14 +1977,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1565,
+ "id": 1566,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -2010,7 +2010,7 @@
},
"children": [
{
- "id": 1566,
+ "id": 1567,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2024,7 +2024,7 @@
],
"signatures": [
{
- "id": 1567,
+ "id": 1568,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -2038,7 +2038,7 @@
],
"parameters": [
{
- "id": 1568,
+ "id": 1569,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2051,25 +2051,25 @@
],
"type": {
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1573,
+ "id": 1574,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2090,12 +2090,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1571,
+ "id": 1572,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2152,7 +2152,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1572,
+ "id": 1573,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2165,12 +2165,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1569,
+ "id": 1570,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2190,12 +2190,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1570,
+ "id": 1571,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2223,7 +2223,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -2231,11 +2231,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1566]
+ "children": [1567]
},
{
"title": "Properties",
- "children": [1573, 1571, 1569, 1570]
+ "children": [1574, 1572, 1570, 1571]
}
],
"sources": [
@@ -2248,14 +2248,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1658,
+ "id": 1659,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -2281,7 +2281,7 @@
},
"children": [
{
- "id": 1659,
+ "id": 1660,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2295,7 +2295,7 @@
],
"signatures": [
{
- "id": 1660,
+ "id": 1661,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -2309,7 +2309,7 @@
],
"parameters": [
{
- "id": 1661,
+ "id": 1662,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2322,25 +2322,25 @@
],
"type": {
"type": "reference",
- "target": 1658,
+ "target": 1659,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1666,
+ "id": 1667,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2361,12 +2361,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1664,
+ "id": 1665,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2423,7 +2423,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1665,
+ "id": 1666,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2436,12 +2436,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1662,
+ "id": 1663,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2461,12 +2461,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1663,
+ "id": 1664,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2494,7 +2494,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -2502,11 +2502,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1659]
+ "children": [1660]
},
{
"title": "Properties",
- "children": [1666, 1664, 1662, 1663]
+ "children": [1667, 1665, 1663, 1664]
}
],
"sources": [
@@ -2519,14 +2519,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1557,
+ "id": 1558,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -2552,7 +2552,7 @@
},
"children": [
{
- "id": 1558,
+ "id": 1559,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2566,7 +2566,7 @@
],
"signatures": [
{
- "id": 1559,
+ "id": 1560,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -2580,25 +2580,25 @@
],
"type": {
"type": "reference",
- "target": 1557,
+ "target": 1558,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1564,
+ "id": 1565,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2619,12 +2619,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1562,
+ "id": 1563,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2681,7 +2681,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1563,
+ "id": 1564,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2694,12 +2694,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1560,
+ "id": 1561,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2719,12 +2719,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1561,
+ "id": 1562,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2752,7 +2752,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -2760,11 +2760,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1558]
+ "children": [1559]
},
{
"title": "Properties",
- "children": [1564, 1562, 1560, 1561]
+ "children": [1565, 1563, 1561, 1562]
}
],
"sources": [
@@ -2777,14 +2777,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1628,
+ "id": 1629,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "declaration",
"kind": 128,
@@ -2810,7 +2810,7 @@
},
"children": [
{
- "id": 1629,
+ "id": 1630,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2824,7 +2824,7 @@
],
"signatures": [
{
- "id": 1630,
+ "id": 1631,
"name": "AuthPKCECodeVerifierMissingError",
"variant": "signature",
"kind": 16384,
@@ -2838,25 +2838,25 @@
],
"type": {
"type": "reference",
- "target": 1628,
+ "target": 1629,
"name": "AuthPKCECodeVerifierMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1635,
+ "id": 1636,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2877,12 +2877,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1633,
+ "id": 1634,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2939,7 +2939,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1634,
+ "id": 1635,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2952,12 +2952,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1631,
+ "id": 1632,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2977,12 +2977,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1632,
+ "id": 1633,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3010,7 +3010,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -3018,11 +3018,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1629]
+ "children": [1630]
},
{
"title": "Properties",
- "children": [1635, 1633, 1631, 1632]
+ "children": [1636, 1634, 1632, 1633]
}
],
"sources": [
@@ -3035,14 +3035,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1601,
+ "id": 1602,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -3068,7 +3068,7 @@
},
"children": [
{
- "id": 1602,
+ "id": 1603,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3082,7 +3082,7 @@
],
"signatures": [
{
- "id": 1603,
+ "id": 1604,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -3096,7 +3096,7 @@
],
"parameters": [
{
- "id": 1604,
+ "id": 1605,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3107,7 +3107,7 @@
}
},
{
- "id": 1605,
+ "id": 1606,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -3124,14 +3124,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1606,
+ "id": 1607,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1608,
+ "id": 1609,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3149,7 +3149,7 @@
}
},
{
- "id": 1607,
+ "id": 1608,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3170,7 +3170,7 @@
"groups": [
{
"title": "Properties",
- "children": [1608, 1607]
+ "children": [1609, 1608]
}
],
"sources": [
@@ -3188,25 +3188,25 @@
],
"type": {
"type": "reference",
- "target": 1601,
+ "target": 1602,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1627,
+ "id": 1628,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3227,12 +3227,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1625,
+ "id": 1626,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3289,7 +3289,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1626,
+ "id": 1627,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3302,12 +3302,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1609,
+ "id": 1610,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -3329,14 +3329,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1610,
+ "id": 1611,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1612,
+ "id": 1613,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3354,7 +3354,7 @@
}
},
{
- "id": 1611,
+ "id": 1612,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3375,7 +3375,7 @@
"groups": [
{
"title": "Properties",
- "children": [1612, 1611]
+ "children": [1613, 1612]
}
],
"sources": [
@@ -3391,7 +3391,7 @@
}
},
{
- "id": 1623,
+ "id": 1624,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3411,12 +3411,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1624,
+ "id": 1625,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3444,12 +3444,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
},
{
- "id": 1613,
+ "id": 1614,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -3463,7 +3463,7 @@
],
"signatures": [
{
- "id": 1614,
+ "id": 1615,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -3478,14 +3478,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1615,
+ "id": 1616,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1619,
+ "id": 1620,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -3507,14 +3507,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1620,
+ "id": 1621,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1622,
+ "id": 1623,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3532,7 +3532,7 @@
}
},
{
- "id": 1621,
+ "id": 1622,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3553,7 +3553,7 @@
"groups": [
{
"title": "Properties",
- "children": [1622, 1621]
+ "children": [1623, 1622]
}
],
"sources": [
@@ -3569,7 +3569,7 @@
}
},
{
- "id": 1617,
+ "id": 1618,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -3587,7 +3587,7 @@
}
},
{
- "id": 1616,
+ "id": 1617,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3605,7 +3605,7 @@
}
},
{
- "id": 1618,
+ "id": 1619,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3626,7 +3626,7 @@
"groups": [
{
"title": "Properties",
- "children": [1619, 1617, 1616, 1618]
+ "children": [1620, 1618, 1617, 1619]
}
],
"sources": [
@@ -3645,15 +3645,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1602]
+ "children": [1603]
},
{
"title": "Properties",
- "children": [1627, 1625, 1609, 1623, 1624]
+ "children": [1628, 1626, 1610, 1624, 1625]
},
{
"title": "Methods",
- "children": [1613]
+ "children": [1614]
}
],
"sources": [
@@ -3666,14 +3666,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1636,
+ "id": 1637,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -3699,7 +3699,7 @@
},
"children": [
{
- "id": 1637,
+ "id": 1638,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3713,7 +3713,7 @@
],
"signatures": [
{
- "id": 1638,
+ "id": 1639,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -3727,7 +3727,7 @@
],
"parameters": [
{
- "id": 1639,
+ "id": 1640,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3738,7 +3738,7 @@
}
},
{
- "id": 1640,
+ "id": 1641,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3751,25 +3751,25 @@
],
"type": {
"type": "reference",
- "target": 1636,
+ "target": 1637,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1645,
+ "id": 1646,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3790,12 +3790,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1643,
+ "id": 1644,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3852,7 +3852,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1644,
+ "id": 1645,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3865,12 +3865,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1641,
+ "id": 1642,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3890,12 +3890,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1642,
+ "id": 1643,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3923,7 +3923,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -3931,11 +3931,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1637]
+ "children": [1638]
},
{
"title": "Properties",
- "children": [1645, 1643, 1641, 1642]
+ "children": [1646, 1644, 1642, 1643]
}
],
"sources": [
@@ -3948,14 +3948,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1549,
+ "id": 1550,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -3981,7 +3981,7 @@
},
"children": [
{
- "id": 1550,
+ "id": 1551,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3995,7 +3995,7 @@
],
"signatures": [
{
- "id": 1551,
+ "id": 1552,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -4009,25 +4009,25 @@
],
"type": {
"type": "reference",
- "target": 1549,
+ "target": 1550,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1556,
+ "id": 1557,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4048,12 +4048,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1554,
+ "id": 1555,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4110,7 +4110,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1555,
+ "id": 1556,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4123,12 +4123,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1552,
+ "id": 1553,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4148,12 +4148,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1553,
+ "id": 1554,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4181,7 +4181,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -4189,11 +4189,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1550]
+ "children": [1551]
},
{
"title": "Properties",
- "children": [1556, 1554, 1552, 1553]
+ "children": [1557, 1555, 1553, 1554]
}
],
"sources": [
@@ -4206,14 +4206,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1527,
+ "id": 1528,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -4239,7 +4239,7 @@
},
"children": [
{
- "id": 1528,
+ "id": 1529,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4253,7 +4253,7 @@
],
"signatures": [
{
- "id": 1529,
+ "id": 1530,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -4267,7 +4267,7 @@
],
"parameters": [
{
- "id": 1530,
+ "id": 1531,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4278,7 +4278,7 @@
}
},
{
- "id": 1531,
+ "id": 1532,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -4291,25 +4291,25 @@
],
"type": {
"type": "reference",
- "target": 1527,
+ "target": 1528,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1509,
+ "target": 1510,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1508,
+ "target": 1509,
"name": "AuthError.constructor"
}
},
{
- "id": 1536,
+ "id": 1537,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4330,12 +4330,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1516,
+ "target": 1517,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1533,
+ "id": 1534,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4392,7 +4392,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1534,
+ "id": 1535,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4405,12 +4405,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1513,
+ "target": 1514,
"name": "AuthError.code"
}
},
{
- "id": 1532,
+ "id": 1533,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -4428,7 +4428,7 @@
}
},
{
- "id": 1535,
+ "id": 1536,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4465,7 +4465,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1515,
+ "target": 1516,
"name": "AuthError.status"
}
}
@@ -4473,11 +4473,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1528]
+ "children": [1529]
},
{
"title": "Properties",
- "children": [1536, 1533, 1532, 1535]
+ "children": [1537, 1534, 1533, 1536]
}
],
"sources": [
@@ -4490,14 +4490,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1646,
+ "id": 1647,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -4523,7 +4523,7 @@
},
"children": [
{
- "id": 1647,
+ "id": 1648,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4537,7 +4537,7 @@
],
"signatures": [
{
- "id": 1648,
+ "id": 1649,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -4551,7 +4551,7 @@
],
"parameters": [
{
- "id": 1649,
+ "id": 1650,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4562,7 +4562,7 @@
}
},
{
- "id": 1650,
+ "id": 1651,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4573,7 +4573,7 @@
}
},
{
- "id": 1651,
+ "id": 1652,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -4602,25 +4602,25 @@
],
"type": {
"type": "reference",
- "target": 1646,
+ "target": 1647,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1539,
+ "target": 1540,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1538,
+ "target": 1539,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1657,
+ "id": 1658,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4641,12 +4641,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1548,
+ "target": 1549,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1655,
+ "id": 1656,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4703,7 +4703,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1656,
+ "id": 1657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4716,12 +4716,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1546,
+ "target": 1547,
"name": "CustomAuthError.code"
}
},
{
- "id": 1653,
+ "id": 1654,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4741,12 +4741,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1544,
+ "target": 1545,
"name": "CustomAuthError.name"
}
},
{
- "id": 1652,
+ "id": 1653,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -4788,7 +4788,7 @@
}
},
{
- "id": 1654,
+ "id": 1655,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4816,7 +4816,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1545,
+ "target": 1546,
"name": "CustomAuthError.status"
}
}
@@ -4824,11 +4824,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1647]
+ "children": [1648]
},
{
"title": "Properties",
- "children": [1657, 1655, 1653, 1652, 1654]
+ "children": [1658, 1656, 1654, 1653, 1655]
}
],
"sources": [
@@ -4841,14 +4841,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1537,
+ "id": 1538,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -4874,7 +4874,7 @@
},
"children": [
{
- "id": 1538,
+ "id": 1539,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4888,7 +4888,7 @@
],
"signatures": [
{
- "id": 1539,
+ "id": 1540,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -4902,7 +4902,7 @@
],
"parameters": [
{
- "id": 1540,
+ "id": 1541,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4913,7 +4913,7 @@
}
},
{
- "id": 1541,
+ "id": 1542,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -4924,7 +4924,7 @@
}
},
{
- "id": 1542,
+ "id": 1543,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4935,7 +4935,7 @@
}
},
{
- "id": 1543,
+ "id": 1544,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -4957,25 +4957,25 @@
],
"type": {
"type": "reference",
- "target": 1537,
+ "target": 1538,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1509,
+ "target": 1510,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1508,
+ "target": 1509,
"name": "AuthError.constructor"
}
},
{
- "id": 1548,
+ "id": 1549,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4996,12 +4996,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1516,
+ "target": 1517,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1546,
+ "id": 1547,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -5058,7 +5058,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1547,
+ "id": 1548,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -5071,12 +5071,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1513,
+ "target": 1514,
"name": "AuthError.code"
}
},
{
- "id": 1544,
+ "id": 1545,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -5099,7 +5099,7 @@
}
},
{
- "id": 1545,
+ "id": 1546,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -5125,7 +5125,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1515,
+ "target": 1516,
"name": "AuthError.status"
}
}
@@ -5133,11 +5133,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1538]
+ "children": [1539]
},
{
"title": "Properties",
- "children": [1548, 1546, 1544, 1545]
+ "children": [1549, 1547, 1545, 1546]
}
],
"sources": [
@@ -5150,7 +5150,7 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -5158,47 +5158,47 @@
"extendedBy": [
{
"type": "reference",
- "target": 1549,
+ "target": 1550,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1557,
+ "target": 1558,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1565,
+ "target": 1566,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1574,
+ "target": 1575,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1601,
+ "target": 1602,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1628,
+ "target": 1629,
"name": "AuthPKCECodeVerifierMissingError"
},
{
"type": "reference",
- "target": 1636,
+ "target": 1637,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1646,
+ "target": 1647,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1658,
+ "target": 1659,
"name": "AuthInvalidJwtError"
}
]
@@ -6516,7 +6516,7 @@
],
"type": {
"type": "reference",
- "target": 1285,
+ "target": 1286,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -6544,7 +6544,7 @@
],
"type": {
"type": "reference",
- "target": 1411,
+ "target": 1412,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -6621,7 +6621,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 884,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -6636,7 +6636,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6749,7 +6749,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6804,7 +6804,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1094,
+ "target": 1095,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -6819,7 +6819,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1095,
+ "target": 1096,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -6903,7 +6903,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -7085,7 +7085,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -7174,7 +7174,7 @@
},
"type": {
"type": "reference",
- "target": 1306,
+ "target": 1307,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -7283,7 +7283,7 @@
},
{
"type": "reference",
- "target": 1299,
+ "target": 1300,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -7404,7 +7404,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7580,7 +7580,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7774,7 +7774,7 @@
},
"type": {
"type": "reference",
- "target": 884,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -7789,7 +7789,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -8444,7 +8444,7 @@
],
"type": {
"type": "reference",
- "target": 943,
+ "target": 944,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
@@ -8582,7 +8582,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1295,
+ "target": 1296,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -8855,7 +8855,7 @@
],
"type": {
"type": "reference",
- "target": 1154,
+ "target": 1155,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -8883,7 +8883,7 @@
],
"type": {
"type": "reference",
- "target": 1463,
+ "target": 1464,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -8973,7 +8973,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1298,
+ "target": 1299,
"name": "CallRefreshTokenResult",
"package": "@supabase/auth-js"
}
@@ -9021,7 +9021,7 @@
},
{
"type": "reference",
- "target": 897,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -9047,7 +9047,7 @@
],
"type": {
"type": "reference",
- "target": 1292,
+ "target": 1293,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -9168,7 +9168,7 @@
},
{
"type": "reference",
- "target": 1292,
+ "target": 1293,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -9315,7 +9315,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9384,7 +9384,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9576,7 +9576,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9695,7 +9695,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9746,7 +9746,7 @@
},
"type": {
"type": "reference",
- "target": 1310,
+ "target": 1311,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -9790,7 +9790,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9858,7 +9858,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 878,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -9927,7 +9927,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -9995,7 +9995,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 811,
+ "target": 812,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -10216,7 +10216,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -10272,7 +10272,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1354,
+ "target": 1355,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -10352,7 +10352,7 @@
],
"type": {
"type": "reference",
- "target": 1334,
+ "target": 1335,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
@@ -10372,7 +10372,7 @@
],
"type": {
"type": "reference",
- "target": 1319,
+ "target": 1320,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
@@ -10493,7 +10493,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -10821,7 +10821,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11018,7 +11018,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -11122,7 +11122,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 845,
+ "target": 846,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -11221,7 +11221,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11295,7 +11295,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1295,
+ "target": 1296,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -11397,7 +11397,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 944,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -11412,7 +11412,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 820,
+ "target": 821,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -11451,7 +11451,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 956,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -11466,7 +11466,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 811,
+ "target": 812,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -11654,7 +11654,7 @@
],
"type": {
"type": "reference",
- "target": 897,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11881,7 +11881,7 @@
],
"type": {
"type": "reference",
- "target": 897,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11966,7 +11966,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12083,7 +12083,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12138,7 +12138,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1040,
+ "target": 1041,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -12153,7 +12153,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 806,
+ "target": 807,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -12429,7 +12429,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12581,7 +12581,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12649,7 +12649,7 @@
},
"type": {
"type": "reference",
- "target": 907,
+ "target": 908,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -12664,7 +12664,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12719,7 +12719,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 956,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -12734,7 +12734,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 811,
+ "target": 812,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -12789,7 +12789,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 944,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -12804,7 +12804,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 820,
+ "target": 821,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -12875,7 +12875,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 926,
+ "target": 927,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -12890,7 +12890,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 806,
+ "target": 807,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -12945,7 +12945,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 921,
+ "target": 922,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -12960,7 +12960,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 815,
+ "target": 816,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -13015,7 +13015,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1054,
+ "target": 1055,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -13030,7 +13030,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 833,
+ "target": 834,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -13096,7 +13096,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1017,
+ "target": 1018,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -13333,7 +13333,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13449,7 +13449,7 @@
},
"type": {
"type": "reference",
- "target": 1310,
+ "target": 1311,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -13493,7 +13493,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13587,7 +13587,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 913,
+ "target": 914,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -13602,7 +13602,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -13787,7 +13787,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 845,
+ "target": 846,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -13912,7 +13912,7 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13986,7 +13986,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 878,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -14055,7 +14055,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 837,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -14110,7 +14110,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1018,
+ "target": 1019,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -14125,7 +14125,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 797,
+ "target": 798,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -14583,7 +14583,7 @@
]
},
{
- "id": 1684,
+ "id": 1685,
"name": "RealtimeChannel",
"variant": "declaration",
"kind": 128,
@@ -14598,7 +14598,7 @@
},
"children": [
{
- "id": 1685,
+ "id": 1686,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -14612,7 +14612,7 @@
],
"signatures": [
{
- "id": 1686,
+ "id": 1687,
"name": "RealtimeChannel",
"variant": "signature",
"kind": 16384,
@@ -14645,7 +14645,7 @@
],
"parameters": [
{
- "id": 1687,
+ "id": 1688,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -14664,7 +14664,7 @@
}
},
{
- "id": 1688,
+ "id": 1689,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14678,7 +14678,7 @@
},
{
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -14686,14 +14686,14 @@
}
},
{
- "id": 1689,
+ "id": 1690,
"name": "socket",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14702,7 +14702,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14711,7 +14711,7 @@
]
},
{
- "id": 1693,
+ "id": 1694,
"name": "bindings",
"variant": "declaration",
"kind": 1024,
@@ -14726,7 +14726,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1694,
+ "id": 1695,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14740,7 +14740,7 @@
],
"indexSignatures": [
{
- "id": 1695,
+ "id": 1696,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14754,7 +14754,7 @@
],
"parameters": [
{
- "id": 1696,
+ "id": 1697,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14770,14 +14770,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 1697,
+ "id": 1698,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1703,
+ "id": 1704,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -14800,7 +14800,7 @@
}
},
{
- "id": 1699,
+ "id": 1700,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -14815,7 +14815,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1700,
+ "id": 1701,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14829,7 +14829,7 @@
],
"indexSignatures": [
{
- "id": 1701,
+ "id": 1702,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14843,7 +14843,7 @@
],
"parameters": [
{
- "id": 1702,
+ "id": 1703,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14864,7 +14864,7 @@
}
},
{
- "id": 1704,
+ "id": 1705,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -14884,7 +14884,7 @@
}
},
{
- "id": 1698,
+ "id": 1699,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -14905,7 +14905,7 @@
"groups": [
{
"title": "Properties",
- "children": [1703, 1699, 1704, 1698]
+ "children": [1704, 1700, 1705, 1699]
}
],
"sources": [
@@ -14924,7 +14924,7 @@
}
},
{
- "id": 1712,
+ "id": 1713,
"name": "broadcastEndpointURL",
"variant": "declaration",
"kind": 1024,
@@ -14942,7 +14942,7 @@
}
},
{
- "id": 1707,
+ "id": 1708,
"name": "joinedOnce",
"variant": "declaration",
"kind": 1024,
@@ -14960,7 +14960,7 @@
}
},
{
- "id": 1708,
+ "id": 1709,
"name": "joinPush",
"variant": "declaration",
"kind": 1024,
@@ -14984,7 +14984,7 @@
}
},
{
- "id": 1691,
+ "id": 1692,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -14998,13 +14998,13 @@
],
"type": {
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1711,
+ "id": 1712,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -15018,14 +15018,14 @@
],
"type": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1714,
+ "id": 1715,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -15043,7 +15043,7 @@
}
},
{
- "id": 1710,
+ "id": 1711,
"name": "pushBuffer",
"variant": "declaration",
"kind": 1024,
@@ -15070,7 +15070,7 @@
}
},
{
- "id": 1709,
+ "id": 1710,
"name": "rejoinTimer",
"variant": "declaration",
"kind": 1024,
@@ -15094,7 +15094,7 @@
}
},
{
- "id": 1692,
+ "id": 1693,
"name": "socket",
"variant": "declaration",
"kind": 1024,
@@ -15108,14 +15108,14 @@
],
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1706,
+ "id": 1707,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -15138,7 +15138,7 @@
}
},
{
- "id": 1713,
+ "id": 1714,
"name": "subTopic",
"variant": "declaration",
"kind": 1024,
@@ -15156,7 +15156,7 @@
}
},
{
- "id": 1705,
+ "id": 1706,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -15174,7 +15174,7 @@
}
},
{
- "id": 1690,
+ "id": 1691,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -15200,7 +15200,7 @@
}
},
{
- "id": 1952,
+ "id": 1953,
"name": "httpSend",
"variant": "declaration",
"kind": 2048,
@@ -15214,7 +15214,7 @@
],
"signatures": [
{
- "id": 1953,
+ "id": 1954,
"name": "httpSend",
"variant": "signature",
"kind": 4096,
@@ -15247,7 +15247,7 @@
],
"parameters": [
{
- "id": 1954,
+ "id": 1955,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -15266,7 +15266,7 @@
}
},
{
- "id": 1955,
+ "id": 1956,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -15285,7 +15285,7 @@
}
},
{
- "id": 1956,
+ "id": 1957,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -15303,14 +15303,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1957,
+ "id": 1958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1958,
+ "id": 1959,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -15333,7 +15333,7 @@
"groups": [
{
"title": "Properties",
- "children": [1958]
+ "children": [1959]
}
],
"sources": [
@@ -15360,14 +15360,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1959,
+ "id": 1960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1960,
+ "id": 1961,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -15388,7 +15388,7 @@
"groups": [
{
"title": "Properties",
- "children": [1960]
+ "children": [1961]
}
],
"sources": [
@@ -15403,14 +15403,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1961,
+ "id": 1962,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1964,
+ "id": 1965,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -15428,7 +15428,7 @@
}
},
{
- "id": 1963,
+ "id": 1964,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -15446,7 +15446,7 @@
}
},
{
- "id": 1962,
+ "id": 1963,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -15467,7 +15467,7 @@
"groups": [
{
"title": "Properties",
- "children": [1964, 1963, 1962]
+ "children": [1965, 1964, 1963]
}
],
"sources": [
@@ -15489,7 +15489,7 @@
]
},
{
- "id": 1746,
+ "id": 1747,
"name": "on",
"variant": "declaration",
"kind": 2048,
@@ -15573,7 +15573,7 @@
],
"signatures": [
{
- "id": 1747,
+ "id": 1748,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15595,7 +15595,7 @@
],
"parameters": [
{
- "id": 1748,
+ "id": 1749,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15606,7 +15606,7 @@
}
},
{
- "id": 1749,
+ "id": 1750,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15614,14 +15614,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1750,
+ "id": 1751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1751,
+ "id": 1752,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15642,7 +15642,7 @@
"groups": [
{
"title": "Properties",
- "children": [1751]
+ "children": [1752]
}
],
"sources": [
@@ -15656,7 +15656,7 @@
}
},
{
- "id": 1752,
+ "id": 1753,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15664,7 +15664,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1753,
+ "id": 1754,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15678,7 +15678,7 @@
],
"signatures": [
{
- "id": 1754,
+ "id": 1755,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15702,14 +15702,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1755,
+ "id": 1756,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15731,7 +15731,7 @@
],
"typeParameters": [
{
- "id": 1756,
+ "id": 1757,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15739,7 +15739,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1757,
+ "id": 1758,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15753,7 +15753,7 @@
],
"indexSignatures": [
{
- "id": 1758,
+ "id": 1759,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15767,7 +15767,7 @@
],
"parameters": [
{
- "id": 1759,
+ "id": 1760,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15790,7 +15790,7 @@
],
"parameters": [
{
- "id": 1760,
+ "id": 1761,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15801,7 +15801,7 @@
}
},
{
- "id": 1761,
+ "id": 1762,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15809,14 +15809,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1762,
+ "id": 1763,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1763,
+ "id": 1764,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15837,7 +15837,7 @@
"groups": [
{
"title": "Properties",
- "children": [1763]
+ "children": [1764]
}
],
"sources": [
@@ -15851,7 +15851,7 @@
}
},
{
- "id": 1764,
+ "id": 1765,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15859,7 +15859,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1765,
+ "id": 1766,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15873,7 +15873,7 @@
],
"signatures": [
{
- "id": 1766,
+ "id": 1767,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15887,18 +15887,18 @@
],
"parameters": [
{
- "id": 1767,
+ "id": 1768,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2197,
+ "target": 2198,
"typeArguments": [
{
"type": "reference",
- "target": 1756,
+ "target": 1757,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15921,14 +15921,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1768,
+ "id": 1769,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15950,7 +15950,7 @@
],
"typeParameters": [
{
- "id": 1769,
+ "id": 1770,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15958,7 +15958,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1770,
+ "id": 1771,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15972,7 +15972,7 @@
],
"indexSignatures": [
{
- "id": 1771,
+ "id": 1772,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15986,7 +15986,7 @@
],
"parameters": [
{
- "id": 1772,
+ "id": 1773,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16009,7 +16009,7 @@
],
"parameters": [
{
- "id": 1773,
+ "id": 1774,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16020,7 +16020,7 @@
}
},
{
- "id": 1774,
+ "id": 1775,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -16028,14 +16028,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1775,
+ "id": 1776,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1776,
+ "id": 1777,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16056,7 +16056,7 @@
"groups": [
{
"title": "Properties",
- "children": [1776]
+ "children": [1777]
}
],
"sources": [
@@ -16070,7 +16070,7 @@
}
},
{
- "id": 1777,
+ "id": 1778,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16078,7 +16078,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1778,
+ "id": 1779,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16092,7 +16092,7 @@
],
"signatures": [
{
- "id": 1779,
+ "id": 1780,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16106,18 +16106,18 @@
],
"parameters": [
{
- "id": 1780,
+ "id": 1781,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2207,
+ "target": 2208,
"typeArguments": [
{
"type": "reference",
- "target": 1769,
+ "target": 1770,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16140,14 +16140,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1781,
+ "id": 1782,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16169,7 +16169,7 @@
],
"typeParameters": [
{
- "id": 1782,
+ "id": 1783,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16177,7 +16177,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1783,
+ "id": 1784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16191,7 +16191,7 @@
],
"indexSignatures": [
{
- "id": 1784,
+ "id": 1785,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16205,7 +16205,7 @@
],
"parameters": [
{
- "id": 1785,
+ "id": 1786,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16228,7 +16228,7 @@
],
"parameters": [
{
- "id": 1786,
+ "id": 1787,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16239,14 +16239,14 @@
}
},
{
- "id": 1787,
+ "id": 1788,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16258,7 +16258,7 @@
}
},
{
- "id": 1788,
+ "id": 1789,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16266,7 +16266,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1789,
+ "id": 1790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16280,7 +16280,7 @@
],
"signatures": [
{
- "id": 1790,
+ "id": 1791,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16294,18 +16294,18 @@
],
"parameters": [
{
- "id": 1791,
+ "id": 1792,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2163,
+ "target": 2164,
"typeArguments": [
{
"type": "reference",
- "target": 1782,
+ "target": 1783,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16328,14 +16328,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1792,
+ "id": 1793,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16357,7 +16357,7 @@
],
"typeParameters": [
{
- "id": 1793,
+ "id": 1794,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16365,7 +16365,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1794,
+ "id": 1795,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16379,7 +16379,7 @@
],
"indexSignatures": [
{
- "id": 1795,
+ "id": 1796,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16393,7 +16393,7 @@
],
"parameters": [
{
- "id": 1796,
+ "id": 1797,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16416,7 +16416,7 @@
],
"parameters": [
{
- "id": 1797,
+ "id": 1798,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16427,14 +16427,14 @@
}
},
{
- "id": 1798,
+ "id": 1799,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16446,7 +16446,7 @@
}
},
{
- "id": 1799,
+ "id": 1800,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16454,7 +16454,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1800,
+ "id": 1801,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16468,7 +16468,7 @@
],
"signatures": [
{
- "id": 1801,
+ "id": 1802,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16482,18 +16482,18 @@
],
"parameters": [
{
- "id": 1802,
+ "id": 1803,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2168,
+ "target": 2169,
"typeArguments": [
{
"type": "reference",
- "target": 1793,
+ "target": 1794,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16516,14 +16516,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1803,
+ "id": 1804,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16545,7 +16545,7 @@
],
"typeParameters": [
{
- "id": 1804,
+ "id": 1805,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16553,7 +16553,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1805,
+ "id": 1806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16567,7 +16567,7 @@
],
"indexSignatures": [
{
- "id": 1806,
+ "id": 1807,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16581,7 +16581,7 @@
],
"parameters": [
{
- "id": 1807,
+ "id": 1808,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16604,7 +16604,7 @@
],
"parameters": [
{
- "id": 1808,
+ "id": 1809,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16615,14 +16615,14 @@
}
},
{
- "id": 1809,
+ "id": 1810,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16634,7 +16634,7 @@
}
},
{
- "id": 1810,
+ "id": 1811,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16642,7 +16642,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1811,
+ "id": 1812,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16656,7 +16656,7 @@
],
"signatures": [
{
- "id": 1812,
+ "id": 1813,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16670,18 +16670,18 @@
],
"parameters": [
{
- "id": 1813,
+ "id": 1814,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2178,
+ "target": 2179,
"typeArguments": [
{
"type": "reference",
- "target": 1804,
+ "target": 1805,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16704,14 +16704,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1814,
+ "id": 1815,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16733,7 +16733,7 @@
],
"typeParameters": [
{
- "id": 1815,
+ "id": 1816,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16741,7 +16741,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1816,
+ "id": 1817,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16755,7 +16755,7 @@
],
"indexSignatures": [
{
- "id": 1817,
+ "id": 1818,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16769,7 +16769,7 @@
],
"parameters": [
{
- "id": 1818,
+ "id": 1819,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16792,7 +16792,7 @@
],
"parameters": [
{
- "id": 1819,
+ "id": 1820,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16803,14 +16803,14 @@
}
},
{
- "id": 1820,
+ "id": 1821,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "literal",
@@ -16822,7 +16822,7 @@
}
},
{
- "id": 1821,
+ "id": 1822,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16830,7 +16830,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1822,
+ "id": 1823,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16844,7 +16844,7 @@
],
"signatures": [
{
- "id": 1823,
+ "id": 1824,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16858,18 +16858,18 @@
],
"parameters": [
{
- "id": 1824,
+ "id": 1825,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2187,
+ "target": 2188,
"typeArguments": [
{
"type": "reference",
- "target": 1815,
+ "target": 1816,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16892,14 +16892,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1825,
+ "id": 1826,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16921,7 +16921,7 @@
],
"typeParameters": [
{
- "id": 1826,
+ "id": 1827,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16929,7 +16929,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1827,
+ "id": 1828,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16943,7 +16943,7 @@
],
"indexSignatures": [
{
- "id": 1828,
+ "id": 1829,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16957,7 +16957,7 @@
],
"parameters": [
{
- "id": 1829,
+ "id": 1830,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16980,7 +16980,7 @@
],
"parameters": [
{
- "id": 1830,
+ "id": 1831,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16991,14 +16991,14 @@
}
},
{
- "id": 1831,
+ "id": 1832,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2157,
"typeArguments": [
{
"type": "union",
@@ -17027,7 +17027,7 @@
}
},
{
- "id": 1832,
+ "id": 1833,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17035,7 +17035,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1833,
+ "id": 1834,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17049,7 +17049,7 @@
],
"signatures": [
{
- "id": 1834,
+ "id": 1835,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17063,18 +17063,18 @@
],
"parameters": [
{
- "id": 1835,
+ "id": 1836,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2163,
+ "target": 2164,
"typeArguments": [
{
"type": "reference",
- "target": 1826,
+ "target": 1827,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17097,14 +17097,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1836,
+ "id": 1837,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17126,7 +17126,7 @@
],
"parameters": [
{
- "id": 1837,
+ "id": 1838,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17145,7 +17145,7 @@
}
},
{
- "id": 1838,
+ "id": 1839,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17161,14 +17161,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1839,
+ "id": 1840,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1840,
+ "id": 1841,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17189,7 +17189,7 @@
"groups": [
{
"title": "Properties",
- "children": [1840]
+ "children": [1841]
}
],
"sources": [
@@ -17203,7 +17203,7 @@
}
},
{
- "id": 1841,
+ "id": 1842,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17219,7 +17219,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1842,
+ "id": 1843,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17233,7 +17233,7 @@
],
"signatures": [
{
- "id": 1843,
+ "id": 1844,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17247,7 +17247,7 @@
],
"parameters": [
{
- "id": 1844,
+ "id": 1845,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17255,14 +17255,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1845,
+ "id": 1846,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1847,
+ "id": 1848,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17280,7 +17280,7 @@
}
},
{
- "id": 1848,
+ "id": 1849,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -17297,14 +17297,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1849,
+ "id": 1850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1851,
+ "id": 1852,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17322,7 +17322,7 @@
}
},
{
- "id": 1850,
+ "id": 1851,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -17345,7 +17345,7 @@
"groups": [
{
"title": "Properties",
- "children": [1851, 1850]
+ "children": [1852, 1851]
}
],
"sources": [
@@ -17359,7 +17359,7 @@
}
},
{
- "id": 1846,
+ "id": 1847,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17380,7 +17380,7 @@
"groups": [
{
"title": "Properties",
- "children": [1847, 1848, 1846]
+ "children": [1848, 1849, 1847]
}
],
"sources": [
@@ -17392,7 +17392,7 @@
],
"indexSignatures": [
{
- "id": 1852,
+ "id": 1853,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17406,7 +17406,7 @@
],
"parameters": [
{
- "id": 1853,
+ "id": 1854,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17439,14 +17439,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1854,
+ "id": 1855,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17468,7 +17468,7 @@
],
"typeParameters": [
{
- "id": 1855,
+ "id": 1856,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17476,7 +17476,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1856,
+ "id": 1857,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17490,7 +17490,7 @@
],
"indexSignatures": [
{
- "id": 1857,
+ "id": 1858,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17504,7 +17504,7 @@
],
"parameters": [
{
- "id": 1858,
+ "id": 1859,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17527,7 +17527,7 @@
],
"parameters": [
{
- "id": 1859,
+ "id": 1860,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17538,7 +17538,7 @@
}
},
{
- "id": 1860,
+ "id": 1861,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17546,14 +17546,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1861,
+ "id": 1862,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1862,
+ "id": 1863,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17574,7 +17574,7 @@
"groups": [
{
"title": "Properties",
- "children": [1862]
+ "children": [1863]
}
],
"sources": [
@@ -17588,7 +17588,7 @@
}
},
{
- "id": 1863,
+ "id": 1864,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17596,7 +17596,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1864,
+ "id": 1865,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17610,7 +17610,7 @@
],
"signatures": [
{
- "id": 1865,
+ "id": 1866,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17624,7 +17624,7 @@
],
"parameters": [
{
- "id": 1866,
+ "id": 1867,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17632,14 +17632,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1867,
+ "id": 1868,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1869,
+ "id": 1870,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17657,7 +17657,7 @@
}
},
{
- "id": 1870,
+ "id": 1871,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -17674,14 +17674,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1871,
+ "id": 1872,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1873,
+ "id": 1874,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17699,7 +17699,7 @@
}
},
{
- "id": 1872,
+ "id": 1873,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -17722,7 +17722,7 @@
"groups": [
{
"title": "Properties",
- "children": [1873, 1872]
+ "children": [1874, 1873]
}
],
"sources": [
@@ -17736,7 +17736,7 @@
}
},
{
- "id": 1874,
+ "id": 1875,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17750,14 +17750,14 @@
],
"type": {
"type": "reference",
- "target": 1855,
+ "target": 1856,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 1868,
+ "id": 1869,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17778,7 +17778,7 @@
"groups": [
{
"title": "Properties",
- "children": [1869, 1870, 1874, 1868]
+ "children": [1870, 1871, 1875, 1869]
}
],
"sources": [
@@ -17804,14 +17804,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1875,
+ "id": 1876,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17833,7 +17833,7 @@
],
"typeParameters": [
{
- "id": 1876,
+ "id": 1877,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17861,7 +17861,7 @@
],
"parameters": [
{
- "id": 1877,
+ "id": 1878,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17872,7 +17872,7 @@
}
},
{
- "id": 1878,
+ "id": 1879,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17880,14 +17880,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1879,
+ "id": 1880,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1880,
+ "id": 1881,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17901,7 +17901,7 @@
],
"type": {
"type": "reference",
- "target": 2233,
+ "target": 2234,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
@@ -17911,7 +17911,7 @@
"groups": [
{
"title": "Properties",
- "children": [1880]
+ "children": [1881]
}
],
"sources": [
@@ -17925,7 +17925,7 @@
}
},
{
- "id": 1881,
+ "id": 1882,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17933,7 +17933,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1882,
+ "id": 1883,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17947,7 +17947,7 @@
],
"signatures": [
{
- "id": 1883,
+ "id": 1884,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17961,7 +17961,7 @@
],
"parameters": [
{
- "id": 1884,
+ "id": 1885,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17969,14 +17969,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1885,
+ "id": 1886,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1887,
+ "id": 1888,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17990,14 +17990,14 @@
],
"type": {
"type": "reference",
- "target": 2233,
+ "target": 2234,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
}
},
{
- "id": 1888,
+ "id": 1889,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18018,7 +18018,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1876,
+ "target": 1877,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18029,7 +18029,7 @@
}
},
{
- "id": 1886,
+ "id": 1887,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18050,7 +18050,7 @@
"groups": [
{
"title": "Properties",
- "children": [1887, 1888, 1886]
+ "children": [1888, 1889, 1887]
}
],
"sources": [
@@ -18076,14 +18076,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1889,
+ "id": 1890,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18105,7 +18105,7 @@
],
"typeParameters": [
{
- "id": 1890,
+ "id": 1891,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18113,7 +18113,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1891,
+ "id": 1892,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18127,7 +18127,7 @@
],
"indexSignatures": [
{
- "id": 1892,
+ "id": 1893,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18141,7 +18141,7 @@
],
"parameters": [
{
- "id": 1893,
+ "id": 1894,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18164,7 +18164,7 @@
],
"parameters": [
{
- "id": 1894,
+ "id": 1895,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18175,7 +18175,7 @@
}
},
{
- "id": 1895,
+ "id": 1896,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18183,14 +18183,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1896,
+ "id": 1897,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1897,
+ "id": 1898,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18204,7 +18204,7 @@
],
"type": {
"type": "reference",
- "target": 2234,
+ "target": 2235,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
@@ -18214,7 +18214,7 @@
"groups": [
{
"title": "Properties",
- "children": [1897]
+ "children": [1898]
}
],
"sources": [
@@ -18228,7 +18228,7 @@
}
},
{
- "id": 1898,
+ "id": 1899,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18236,7 +18236,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1899,
+ "id": 1900,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18250,7 +18250,7 @@
],
"signatures": [
{
- "id": 1900,
+ "id": 1901,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18264,7 +18264,7 @@
],
"parameters": [
{
- "id": 1901,
+ "id": 1902,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18272,14 +18272,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1902,
+ "id": 1903,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1904,
+ "id": 1905,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18293,14 +18293,14 @@
],
"type": {
"type": "reference",
- "target": 2234,
+ "target": 2235,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
}
},
{
- "id": 1905,
+ "id": 1906,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18321,7 +18321,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1890,
+ "target": 1891,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18332,7 +18332,7 @@
}
},
{
- "id": 1903,
+ "id": 1904,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18353,7 +18353,7 @@
"groups": [
{
"title": "Properties",
- "children": [1904, 1905, 1903]
+ "children": [1905, 1906, 1904]
}
],
"sources": [
@@ -18379,14 +18379,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1906,
+ "id": 1907,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18408,7 +18408,7 @@
],
"typeParameters": [
{
- "id": 1907,
+ "id": 1908,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18416,7 +18416,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1908,
+ "id": 1909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18430,7 +18430,7 @@
],
"indexSignatures": [
{
- "id": 1909,
+ "id": 1910,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18444,7 +18444,7 @@
],
"parameters": [
{
- "id": 1910,
+ "id": 1911,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18467,7 +18467,7 @@
],
"parameters": [
{
- "id": 1911,
+ "id": 1912,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18478,7 +18478,7 @@
}
},
{
- "id": 1912,
+ "id": 1913,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18486,14 +18486,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1913,
+ "id": 1914,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1914,
+ "id": 1915,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18507,7 +18507,7 @@
],
"type": {
"type": "reference",
- "target": 2235,
+ "target": 2236,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
@@ -18517,7 +18517,7 @@
"groups": [
{
"title": "Properties",
- "children": [1914]
+ "children": [1915]
}
],
"sources": [
@@ -18531,7 +18531,7 @@
}
},
{
- "id": 1915,
+ "id": 1916,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18539,7 +18539,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1916,
+ "id": 1917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18553,7 +18553,7 @@
],
"signatures": [
{
- "id": 1917,
+ "id": 1918,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18567,7 +18567,7 @@
],
"parameters": [
{
- "id": 1918,
+ "id": 1919,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18575,14 +18575,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1919,
+ "id": 1920,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1921,
+ "id": 1922,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18596,14 +18596,14 @@
],
"type": {
"type": "reference",
- "target": 2235,
+ "target": 2236,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
}
},
{
- "id": 1922,
+ "id": 1923,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18624,7 +18624,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1907,
+ "target": 1908,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18635,7 +18635,7 @@
}
},
{
- "id": 1920,
+ "id": 1921,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18656,7 +18656,7 @@
"groups": [
{
"title": "Properties",
- "children": [1921, 1922, 1920]
+ "children": [1922, 1923, 1921]
}
],
"sources": [
@@ -18682,14 +18682,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1923,
+ "id": 1924,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18711,7 +18711,7 @@
],
"typeParameters": [
{
- "id": 1924,
+ "id": 1925,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18719,7 +18719,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1925,
+ "id": 1926,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18733,7 +18733,7 @@
],
"indexSignatures": [
{
- "id": 1926,
+ "id": 1927,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18747,7 +18747,7 @@
],
"parameters": [
{
- "id": 1927,
+ "id": 1928,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18770,7 +18770,7 @@
],
"parameters": [
{
- "id": 1928,
+ "id": 1929,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18781,7 +18781,7 @@
}
},
{
- "id": 1929,
+ "id": 1930,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18789,14 +18789,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1930,
+ "id": 1931,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1931,
+ "id": 1932,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18810,7 +18810,7 @@
],
"type": {
"type": "reference",
- "target": 2236,
+ "target": 2237,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
@@ -18820,7 +18820,7 @@
"groups": [
{
"title": "Properties",
- "children": [1931]
+ "children": [1932]
}
],
"sources": [
@@ -18834,7 +18834,7 @@
}
},
{
- "id": 1932,
+ "id": 1933,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18842,7 +18842,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1933,
+ "id": 1934,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18856,7 +18856,7 @@
],
"signatures": [
{
- "id": 1934,
+ "id": 1935,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18870,7 +18870,7 @@
],
"parameters": [
{
- "id": 1935,
+ "id": 1936,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18878,14 +18878,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1936,
+ "id": 1937,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1938,
+ "id": 1939,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18899,14 +18899,14 @@
],
"type": {
"type": "reference",
- "target": 2236,
+ "target": 2237,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
}
},
{
- "id": 1939,
+ "id": 1940,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18927,7 +18927,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1924,
+ "target": 1925,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18938,7 +18938,7 @@
}
},
{
- "id": 1937,
+ "id": 1938,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18959,7 +18959,7 @@
"groups": [
{
"title": "Properties",
- "children": [1938, 1939, 1937]
+ "children": [1939, 1940, 1938]
}
],
"sources": [
@@ -18985,14 +18985,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1940,
+ "id": 1941,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -19014,7 +19014,7 @@
],
"typeParameters": [
{
- "id": 1941,
+ "id": 1942,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -19022,7 +19022,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1942,
+ "id": 1943,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19036,7 +19036,7 @@
],
"indexSignatures": [
{
- "id": 1943,
+ "id": 1944,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19050,7 +19050,7 @@
],
"parameters": [
{
- "id": 1944,
+ "id": 1945,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19073,7 +19073,7 @@
],
"parameters": [
{
- "id": 1945,
+ "id": 1946,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -19084,7 +19084,7 @@
}
},
{
- "id": 1946,
+ "id": 1947,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -19092,7 +19092,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1947,
+ "id": 1948,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19101,7 +19101,7 @@
}
},
{
- "id": 1948,
+ "id": 1949,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -19109,7 +19109,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1949,
+ "id": 1950,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19123,7 +19123,7 @@
],
"signatures": [
{
- "id": 1950,
+ "id": 1951,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19137,7 +19137,7 @@
],
"parameters": [
{
- "id": 1951,
+ "id": 1952,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -19160,7 +19160,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19169,7 +19169,7 @@
]
},
{
- "id": 1723,
+ "id": 1724,
"name": "presenceState",
"variant": "declaration",
"kind": 2048,
@@ -19183,7 +19183,7 @@
],
"signatures": [
{
- "id": 1724,
+ "id": 1725,
"name": "presenceState",
"variant": "signature",
"kind": 4096,
@@ -19205,7 +19205,7 @@
],
"typeParameters": [
{
- "id": 1725,
+ "id": 1726,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -19213,7 +19213,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1726,
+ "id": 1727,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19227,7 +19227,7 @@
],
"indexSignatures": [
{
- "id": 1727,
+ "id": 1728,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19241,7 +19241,7 @@
],
"parameters": [
{
- "id": 1728,
+ "id": 1729,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19263,7 +19263,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 1729,
+ "id": 1730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19274,11 +19274,11 @@
],
"type": {
"type": "reference",
- "target": 2217,
+ "target": 2218,
"typeArguments": [
{
"type": "reference",
- "target": 1725,
+ "target": 1726,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -19291,7 +19291,7 @@
]
},
{
- "id": 1965,
+ "id": 1966,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -19305,7 +19305,7 @@
],
"signatures": [
{
- "id": 1966,
+ "id": 1967,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -19327,7 +19327,7 @@
],
"parameters": [
{
- "id": 1967,
+ "id": 1968,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -19343,14 +19343,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1968,
+ "id": 1969,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1970,
+ "id": 1971,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -19376,7 +19376,7 @@
}
},
{
- "id": 1971,
+ "id": 1972,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -19404,7 +19404,7 @@
}
},
{
- "id": 1969,
+ "id": 1970,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -19446,7 +19446,7 @@
"groups": [
{
"title": "Properties",
- "children": [1970, 1971, 1969]
+ "children": [1971, 1972, 1970]
}
],
"sources": [
@@ -19458,7 +19458,7 @@
],
"indexSignatures": [
{
- "id": 1972,
+ "id": 1973,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19472,7 +19472,7 @@
],
"parameters": [
{
- "id": 1973,
+ "id": 1974,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19493,7 +19493,7 @@
}
},
{
- "id": 1974,
+ "id": 1975,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -19511,7 +19511,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1975,
+ "id": 1976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19525,7 +19525,7 @@
],
"indexSignatures": [
{
- "id": 1976,
+ "id": 1977,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19539,7 +19539,7 @@
],
"parameters": [
{
- "id": 1977,
+ "id": 1978,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19569,7 +19569,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2003,
+ "target": 2004,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19581,7 +19581,7 @@
]
},
{
- "id": 1715,
+ "id": 1716,
"name": "subscribe",
"variant": "declaration",
"kind": 2048,
@@ -19595,7 +19595,7 @@
],
"signatures": [
{
- "id": 1716,
+ "id": 1717,
"name": "subscribe",
"variant": "signature",
"kind": 4096,
@@ -19617,7 +19617,7 @@
],
"parameters": [
{
- "id": 1717,
+ "id": 1718,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -19627,7 +19627,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1718,
+ "id": 1719,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19641,7 +19641,7 @@
],
"signatures": [
{
- "id": 1719,
+ "id": 1720,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19655,20 +19655,20 @@
],
"parameters": [
{
- "id": 1720,
+ "id": 1721,
"name": "status",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2241,
+ "target": 2242,
"name": "REALTIME_SUBSCRIBE_STATES",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1721,
+ "id": 1722,
"name": "err",
"variant": "param",
"kind": 32768,
@@ -19696,7 +19696,7 @@
}
},
{
- "id": 1722,
+ "id": 1723,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -19711,7 +19711,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19720,7 +19720,7 @@
]
},
{
- "id": 1987,
+ "id": 1988,
"name": "teardown",
"variant": "declaration",
"kind": 2048,
@@ -19734,7 +19734,7 @@
],
"signatures": [
{
- "id": 1988,
+ "id": 1989,
"name": "teardown",
"variant": "signature",
"kind": 4096,
@@ -19762,7 +19762,7 @@
]
},
{
- "id": 1730,
+ "id": 1731,
"name": "track",
"variant": "declaration",
"kind": 2048,
@@ -19776,7 +19776,7 @@
],
"signatures": [
{
- "id": 1731,
+ "id": 1732,
"name": "track",
"variant": "signature",
"kind": 4096,
@@ -19806,7 +19806,7 @@
],
"parameters": [
{
- "id": 1732,
+ "id": 1733,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -19814,7 +19814,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1733,
+ "id": 1734,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19828,7 +19828,7 @@
],
"indexSignatures": [
{
- "id": 1734,
+ "id": 1735,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19842,7 +19842,7 @@
],
"parameters": [
{
- "id": 1735,
+ "id": 1736,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19863,7 +19863,7 @@
}
},
{
- "id": 1736,
+ "id": 1737,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -19873,7 +19873,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1737,
+ "id": 1738,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19887,7 +19887,7 @@
],
"indexSignatures": [
{
- "id": 1738,
+ "id": 1739,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19901,7 +19901,7 @@
],
"parameters": [
{
- "id": 1739,
+ "id": 1740,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19931,7 +19931,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2003,
+ "target": 2004,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19943,7 +19943,7 @@
]
},
{
- "id": 1984,
+ "id": 1985,
"name": "unsubscribe",
"variant": "declaration",
"kind": 2048,
@@ -19957,7 +19957,7 @@
],
"signatures": [
{
- "id": 1985,
+ "id": 1986,
"name": "unsubscribe",
"variant": "signature",
"kind": 4096,
@@ -19987,7 +19987,7 @@
],
"parameters": [
{
- "id": 1986,
+ "id": 1987,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -20032,7 +20032,7 @@
]
},
{
- "id": 1740,
+ "id": 1741,
"name": "untrack",
"variant": "declaration",
"kind": 2048,
@@ -20046,7 +20046,7 @@
],
"signatures": [
{
- "id": 1741,
+ "id": 1742,
"name": "untrack",
"variant": "signature",
"kind": 4096,
@@ -20068,7 +20068,7 @@
],
"parameters": [
{
- "id": 1742,
+ "id": 1743,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -20078,7 +20078,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1743,
+ "id": 1744,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20092,7 +20092,7 @@
],
"indexSignatures": [
{
- "id": 1744,
+ "id": 1745,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20106,7 +20106,7 @@
],
"parameters": [
{
- "id": 1745,
+ "id": 1746,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20136,7 +20136,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2003,
+ "target": 2004,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -20148,7 +20148,7 @@
]
},
{
- "id": 1978,
+ "id": 1979,
"name": "updateJoinPayload",
"variant": "declaration",
"kind": 2048,
@@ -20162,7 +20162,7 @@
],
"signatures": [
{
- "id": 1979,
+ "id": 1980,
"name": "updateJoinPayload",
"variant": "signature",
"kind": 4096,
@@ -20184,7 +20184,7 @@
],
"parameters": [
{
- "id": 1980,
+ "id": 1981,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -20192,7 +20192,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1981,
+ "id": 1982,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20206,7 +20206,7 @@
],
"indexSignatures": [
{
- "id": 1982,
+ "id": 1983,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20220,7 +20220,7 @@
],
"parameters": [
{
- "id": 1983,
+ "id": 1984,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20252,17 +20252,17 @@
"groups": [
{
"title": "Constructors",
- "children": [1685]
+ "children": [1686]
},
{
"title": "Properties",
"children": [
- 1693, 1712, 1707, 1708, 1691, 1711, 1714, 1710, 1709, 1692, 1706, 1713, 1705, 1690
+ 1694, 1713, 1708, 1709, 1692, 1712, 1715, 1711, 1710, 1693, 1707, 1714, 1706, 1691
]
},
{
"title": "Methods",
- "children": [1952, 1746, 1723, 1965, 1715, 1987, 1730, 1984, 1740, 1978]
+ "children": [1953, 1747, 1724, 1966, 1716, 1988, 1731, 1985, 1741, 1979]
}
],
"sources": [
@@ -20274,14 +20274,14 @@
]
},
{
- "id": 2004,
+ "id": 2005,
"name": "RealtimeClient",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 2005,
+ "id": 2006,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -20295,7 +20295,7 @@
],
"signatures": [
{
- "id": 2006,
+ "id": 2007,
"name": "RealtimeClient",
"variant": "signature",
"kind": 16384,
@@ -20328,7 +20328,7 @@
],
"parameters": [
{
- "id": 2007,
+ "id": 2008,
"name": "endPoint",
"variant": "param",
"kind": 32768,
@@ -20347,7 +20347,7 @@
}
},
{
- "id": 2008,
+ "id": 2009,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -20356,7 +20356,7 @@
},
"type": {
"type": "reference",
- "target": 2118,
+ "target": 2119,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js",
"highlightedProperties": {
@@ -20458,7 +20458,7 @@
],
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -20467,7 +20467,7 @@
]
},
{
- "id": 2058,
+ "id": 2059,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -20489,7 +20489,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2059,
+ "id": 2060,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20503,7 +20503,7 @@
],
"signatures": [
{
- "id": 2060,
+ "id": 2061,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20547,7 +20547,7 @@
}
},
{
- "id": 2009,
+ "id": 2010,
"name": "accessTokenValue",
"variant": "declaration",
"kind": 1024,
@@ -20574,7 +20574,7 @@
}
},
{
- "id": 2010,
+ "id": 2011,
"name": "apiKey",
"variant": "declaration",
"kind": 1024,
@@ -20601,7 +20601,7 @@
}
},
{
- "id": 2012,
+ "id": 2013,
"name": "channels",
"variant": "declaration",
"kind": 1024,
@@ -20617,7 +20617,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -20625,7 +20625,7 @@
}
},
{
- "id": 2041,
+ "id": 2042,
"name": "conn",
"variant": "declaration",
"kind": 1024,
@@ -20646,7 +20646,7 @@
},
{
"type": "reference",
- "target": 2263,
+ "target": 2264,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -20654,7 +20654,7 @@
}
},
{
- "id": 2039,
+ "id": 2040,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -20677,7 +20677,7 @@
}
},
{
- "id": 2038,
+ "id": 2039,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -20700,7 +20700,7 @@
}
},
{
- "id": 2013,
+ "id": 2014,
"name": "endPoint",
"variant": "declaration",
"kind": 1024,
@@ -20718,7 +20718,7 @@
}
},
{
- "id": 2050,
+ "id": 2051,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -20733,7 +20733,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2051,
+ "id": 2052,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20752,7 +20752,7 @@
],
"signatures": [
{
- "id": 2052,
+ "id": 2053,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20774,7 +20774,7 @@
],
"parameters": [
{
- "id": 2053,
+ "id": 2054,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -20804,7 +20804,7 @@
}
},
{
- "id": 2054,
+ "id": 2055,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -20844,7 +20844,7 @@
}
},
{
- "id": 2055,
+ "id": 2056,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20866,7 +20866,7 @@
],
"parameters": [
{
- "id": 2056,
+ "id": 2057,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -20900,7 +20900,7 @@
}
},
{
- "id": 2057,
+ "id": 2058,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -20944,7 +20944,7 @@
}
},
{
- "id": 2015,
+ "id": 2016,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -20975,7 +20975,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2016,
+ "id": 2017,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20989,7 +20989,7 @@
],
"indexSignatures": [
{
- "id": 2017,
+ "id": 2018,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -21003,7 +21003,7 @@
],
"parameters": [
{
- "id": 2018,
+ "id": 2019,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -21024,7 +21024,7 @@
}
},
{
- "id": 2028,
+ "id": 2029,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -21039,7 +21039,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2029,
+ "id": 2030,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -21053,7 +21053,7 @@
],
"signatures": [
{
- "id": 2030,
+ "id": 2031,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -21067,7 +21067,7 @@
],
"parameters": [
{
- "id": 2031,
+ "id": 2032,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -21083,7 +21083,7 @@
}
},
{
- "id": 2032,
+ "id": 2033,
"name": "latency",
"variant": "param",
"kind": 32768,
@@ -21106,7 +21106,7 @@
}
},
{
- "id": 2025,
+ "id": 2026,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -21124,7 +21124,7 @@
}
},
{
- "id": 2026,
+ "id": 2027,
"name": "heartbeatTimer",
"variant": "declaration",
"kind": 1024,
@@ -21157,7 +21157,7 @@
}
},
{
- "id": 2014,
+ "id": 2015,
"name": "httpEndpoint",
"variant": "declaration",
"kind": 1024,
@@ -21175,7 +21175,7 @@
}
},
{
- "id": 2036,
+ "id": 2037,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -21198,7 +21198,7 @@
}
},
{
- "id": 2037,
+ "id": 2038,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -21223,7 +21223,7 @@
}
},
{
- "id": 2019,
+ "id": 2020,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -21240,7 +21240,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2020,
+ "id": 2021,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -21254,7 +21254,7 @@
],
"indexSignatures": [
{
- "id": 2021,
+ "id": 2022,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -21268,7 +21268,7 @@
],
"parameters": [
{
- "id": 2022,
+ "id": 2023,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -21289,7 +21289,7 @@
}
},
{
- "id": 2027,
+ "id": 2028,
"name": "pendingHeartbeatRef",
"variant": "declaration",
"kind": 1024,
@@ -21316,7 +21316,7 @@
}
},
{
- "id": 2040,
+ "id": 2041,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -21339,7 +21339,7 @@
}
},
{
- "id": 2034,
+ "id": 2035,
"name": "reconnectTimer",
"variant": "declaration",
"kind": 1024,
@@ -21372,7 +21372,7 @@
}
},
{
- "id": 2033,
+ "id": 2034,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -21390,7 +21390,7 @@
}
},
{
- "id": 2042,
+ "id": 2043,
"name": "sendBuffer",
"variant": "declaration",
"kind": 1024,
@@ -21416,7 +21416,7 @@
}
},
{
- "id": 2043,
+ "id": 2044,
"name": "serializer",
"variant": "declaration",
"kind": 1024,
@@ -21440,7 +21440,7 @@
}
},
{
- "id": 2044,
+ "id": 2045,
"name": "stateChangeCallbacks",
"variant": "declaration",
"kind": 1024,
@@ -21455,14 +21455,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2045,
+ "id": 2046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2047,
+ "id": 2048,
"name": "close",
"variant": "declaration",
"kind": 1024,
@@ -21488,7 +21488,7 @@
}
},
{
- "id": 2048,
+ "id": 2049,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -21514,7 +21514,7 @@
}
},
{
- "id": 2049,
+ "id": 2050,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -21540,7 +21540,7 @@
}
},
{
- "id": 2046,
+ "id": 2047,
"name": "open",
"variant": "declaration",
"kind": 1024,
@@ -21569,7 +21569,7 @@
"groups": [
{
"title": "Properties",
- "children": [2047, 2048, 2049, 2046]
+ "children": [2048, 2049, 2050, 2047]
}
],
"sources": [
@@ -21583,7 +21583,7 @@
}
},
{
- "id": 2023,
+ "id": 2024,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -21601,7 +21601,7 @@
}
},
{
- "id": 2024,
+ "id": 2025,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -21622,7 +21622,7 @@
},
{
"type": "reference",
- "target": 2313,
+ "target": 2314,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
@@ -21630,7 +21630,7 @@
}
},
{
- "id": 2035,
+ "id": 2036,
"name": "vsn",
"variant": "declaration",
"kind": 1024,
@@ -21648,7 +21648,7 @@
}
},
{
- "id": 2061,
+ "id": 2062,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -21668,7 +21668,7 @@
}
},
{
- "id": 2063,
+ "id": 2064,
"name": "workerRef",
"variant": "declaration",
"kind": 1024,
@@ -21693,7 +21693,7 @@
}
},
{
- "id": 2062,
+ "id": 2063,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -21713,7 +21713,7 @@
}
},
{
- "id": 2096,
+ "id": 2097,
"name": "channel",
"variant": "declaration",
"kind": 2048,
@@ -21727,7 +21727,7 @@
],
"signatures": [
{
- "id": 2097,
+ "id": 2098,
"name": "channel",
"variant": "signature",
"kind": 4096,
@@ -21742,7 +21742,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "RealtimeChannel",
- "target": 1684
+ "target": 1685
},
{
"kind": "text",
@@ -21767,7 +21767,7 @@
],
"parameters": [
{
- "id": 2098,
+ "id": 2099,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -21778,7 +21778,7 @@
}
},
{
- "id": 2099,
+ "id": 2100,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -21787,7 +21787,7 @@
},
"type": {
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -21795,7 +21795,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -21804,7 +21804,7 @@
]
},
{
- "id": 2068,
+ "id": 2069,
"name": "connect",
"variant": "declaration",
"kind": 2048,
@@ -21818,7 +21818,7 @@
],
"signatures": [
{
- "id": 2069,
+ "id": 2070,
"name": "connect",
"variant": "signature",
"kind": 4096,
@@ -21846,7 +21846,7 @@
]
},
{
- "id": 2088,
+ "id": 2089,
"name": "connectionState",
"variant": "declaration",
"kind": 2048,
@@ -21860,7 +21860,7 @@
],
"signatures": [
{
- "id": 2089,
+ "id": 2090,
"name": "connectionState",
"variant": "signature",
"kind": 4096,
@@ -21893,7 +21893,7 @@
]
},
{
- "id": 2072,
+ "id": 2073,
"name": "disconnect",
"variant": "declaration",
"kind": 2048,
@@ -21907,7 +21907,7 @@
],
"signatures": [
{
- "id": 2073,
+ "id": 2074,
"name": "disconnect",
"variant": "signature",
"kind": 4096,
@@ -21929,7 +21929,7 @@
],
"parameters": [
{
- "id": 2074,
+ "id": 2075,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -21950,7 +21950,7 @@
}
},
{
- "id": 2075,
+ "id": 2076,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -21979,7 +21979,7 @@
]
},
{
- "id": 2070,
+ "id": 2071,
"name": "endpointURL",
"variant": "declaration",
"kind": 2048,
@@ -21993,7 +21993,7 @@
],
"signatures": [
{
- "id": 2071,
+ "id": 2072,
"name": "endpointURL",
"variant": "signature",
"kind": 4096,
@@ -22032,7 +22032,7 @@
]
},
{
- "id": 2115,
+ "id": 2116,
"name": "flushSendBuffer",
"variant": "declaration",
"kind": 2048,
@@ -22046,7 +22046,7 @@
],
"signatures": [
{
- "id": 2116,
+ "id": 2117,
"name": "flushSendBuffer",
"variant": "signature",
"kind": 4096,
@@ -22074,7 +22074,7 @@
]
},
{
- "id": 2076,
+ "id": 2077,
"name": "getChannels",
"variant": "declaration",
"kind": 2048,
@@ -22088,7 +22088,7 @@
],
"signatures": [
{
- "id": 2077,
+ "id": 2078,
"name": "getChannels",
"variant": "signature",
"kind": 4096,
@@ -22112,7 +22112,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -22122,7 +22122,7 @@
]
},
{
- "id": 2090,
+ "id": 2091,
"name": "isConnected",
"variant": "declaration",
"kind": 2048,
@@ -22136,7 +22136,7 @@
],
"signatures": [
{
- "id": 2091,
+ "id": 2092,
"name": "isConnected",
"variant": "signature",
"kind": 4096,
@@ -22172,7 +22172,7 @@
]
},
{
- "id": 2092,
+ "id": 2093,
"name": "isConnecting",
"variant": "declaration",
"kind": 2048,
@@ -22186,7 +22186,7 @@
],
"signatures": [
{
- "id": 2093,
+ "id": 2094,
"name": "isConnecting",
"variant": "signature",
"kind": 4096,
@@ -22222,7 +22222,7 @@
]
},
{
- "id": 2094,
+ "id": 2095,
"name": "isDisconnecting",
"variant": "declaration",
"kind": 2048,
@@ -22236,7 +22236,7 @@
],
"signatures": [
{
- "id": 2095,
+ "id": 2096,
"name": "isDisconnecting",
"variant": "signature",
"kind": 4096,
@@ -22272,7 +22272,7 @@
]
},
{
- "id": 2083,
+ "id": 2084,
"name": "log",
"variant": "declaration",
"kind": 2048,
@@ -22286,7 +22286,7 @@
],
"signatures": [
{
- "id": 2084,
+ "id": 2085,
"name": "log",
"variant": "signature",
"kind": 4096,
@@ -22316,7 +22316,7 @@
],
"parameters": [
{
- "id": 2085,
+ "id": 2086,
"name": "kind",
"variant": "param",
"kind": 32768,
@@ -22327,7 +22327,7 @@
}
},
{
- "id": 2086,
+ "id": 2087,
"name": "msg",
"variant": "param",
"kind": 32768,
@@ -22338,7 +22338,7 @@
}
},
{
- "id": 2087,
+ "id": 2088,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -22359,7 +22359,7 @@
]
},
{
- "id": 2108,
+ "id": 2109,
"name": "onHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -22373,7 +22373,7 @@
],
"signatures": [
{
- "id": 2109,
+ "id": 2110,
"name": "onHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -22395,7 +22395,7 @@
],
"parameters": [
{
- "id": 2110,
+ "id": 2111,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -22403,7 +22403,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2111,
+ "id": 2112,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -22417,7 +22417,7 @@
],
"signatures": [
{
- "id": 2112,
+ "id": 2113,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -22431,7 +22431,7 @@
],
"parameters": [
{
- "id": 2113,
+ "id": 2114,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -22447,7 +22447,7 @@
}
},
{
- "id": 2114,
+ "id": 2115,
"name": "latency",
"variant": "param",
"kind": 32768,
@@ -22478,7 +22478,7 @@
]
},
{
- "id": 2100,
+ "id": 2101,
"name": "push",
"variant": "declaration",
"kind": 2048,
@@ -22492,7 +22492,7 @@
],
"signatures": [
{
- "id": 2101,
+ "id": 2102,
"name": "push",
"variant": "signature",
"kind": 4096,
@@ -22514,14 +22514,14 @@
],
"parameters": [
{
- "id": 2102,
+ "id": 2103,
"name": "data",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2149,
+ "target": 2150,
"name": "RealtimeMessage",
"package": "@supabase/realtime-js"
}
@@ -22535,7 +22535,7 @@
]
},
{
- "id": 2081,
+ "id": 2082,
"name": "removeAllChannels",
"variant": "declaration",
"kind": 2048,
@@ -22549,7 +22549,7 @@
],
"signatures": [
{
- "id": 2082,
+ "id": 2083,
"name": "removeAllChannels",
"variant": "signature",
"kind": 4096,
@@ -22580,7 +22580,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 2226,
+ "target": 2227,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -22593,7 +22593,7 @@
]
},
{
- "id": 2078,
+ "id": 2079,
"name": "removeChannel",
"variant": "declaration",
"kind": 2048,
@@ -22607,7 +22607,7 @@
],
"signatures": [
{
- "id": 2079,
+ "id": 2080,
"name": "removeChannel",
"variant": "signature",
"kind": 4096,
@@ -22629,7 +22629,7 @@
],
"parameters": [
{
- "id": 2080,
+ "id": 2081,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -22644,7 +22644,7 @@
},
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -22660,7 +22660,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2226,
+ "target": 2227,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -22672,7 +22672,7 @@
]
},
{
- "id": 2106,
+ "id": 2107,
"name": "sendHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -22686,7 +22686,7 @@
],
"signatures": [
{
- "id": 2107,
+ "id": 2108,
"name": "sendHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -22725,7 +22725,7 @@
]
},
{
- "id": 2103,
+ "id": 2104,
"name": "setAuth",
"variant": "declaration",
"kind": 2048,
@@ -22739,7 +22739,7 @@
],
"signatures": [
{
- "id": 2104,
+ "id": 2105,
"name": "setAuth",
"variant": "signature",
"kind": 4096,
@@ -22796,7 +22796,7 @@
],
"parameters": [
{
- "id": 2105,
+ "id": 2106,
"name": "token",
"variant": "param",
"kind": 32768,
@@ -22848,21 +22848,21 @@
"groups": [
{
"title": "Constructors",
- "children": [2005]
+ "children": [2006]
},
{
"title": "Properties",
"children": [
- 2058, 2009, 2010, 2012, 2041, 2039, 2038, 2013, 2050, 2015, 2028, 2025, 2026, 2014,
- 2036, 2037, 2019, 2027, 2040, 2034, 2033, 2042, 2043, 2044, 2023, 2024, 2035, 2061,
- 2063, 2062
+ 2059, 2010, 2011, 2013, 2042, 2040, 2039, 2014, 2051, 2016, 2029, 2026, 2027, 2015,
+ 2037, 2038, 2020, 2028, 2041, 2035, 2034, 2043, 2044, 2045, 2024, 2025, 2036, 2062,
+ 2064, 2063
]
},
{
"title": "Methods",
"children": [
- 2096, 2068, 2088, 2072, 2070, 2115, 2076, 2090, 2092, 2094, 2083, 2108, 2100, 2081,
- 2078, 2106, 2103
+ 2097, 2069, 2089, 2073, 2071, 2116, 2077, 2091, 2093, 2095, 2084, 2109, 2101, 2082,
+ 2079, 2107, 2104
]
}
],
@@ -22875,14 +22875,14 @@
]
},
{
- "id": 1667,
+ "id": 1668,
"name": "RealtimePresence",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1668,
+ "id": 1669,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -22896,7 +22896,7 @@
],
"signatures": [
{
- "id": 1669,
+ "id": 1670,
"name": "RealtimePresence",
"variant": "signature",
"kind": 16384,
@@ -22929,7 +22929,7 @@
],
"parameters": [
{
- "id": 1670,
+ "id": 1671,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -22944,14 +22944,14 @@
},
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1671,
+ "id": 1672,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -22987,7 +22987,7 @@
],
"type": {
"type": "reference",
- "target": 1667,
+ "target": 1668,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -22996,7 +22996,7 @@
]
},
{
- "id": 1677,
+ "id": 1678,
"name": "caller",
"variant": "declaration",
"kind": 1024,
@@ -23011,14 +23011,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1678,
+ "id": 1679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1679,
+ "id": 1680,
"name": "onJoin",
"variant": "declaration",
"kind": 1024,
@@ -23041,7 +23041,7 @@
}
},
{
- "id": 1680,
+ "id": 1681,
"name": "onLeave",
"variant": "declaration",
"kind": 1024,
@@ -23064,7 +23064,7 @@
}
},
{
- "id": 1681,
+ "id": 1682,
"name": "onSync",
"variant": "declaration",
"kind": 1024,
@@ -23079,7 +23079,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1682,
+ "id": 1683,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -23093,7 +23093,7 @@
],
"signatures": [
{
- "id": 1683,
+ "id": 1684,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -23118,7 +23118,7 @@
"groups": [
{
"title": "Properties",
- "children": [1679, 1680, 1681]
+ "children": [1680, 1681, 1682]
}
],
"sources": [
@@ -23132,7 +23132,7 @@
}
},
{
- "id": 1672,
+ "id": 1673,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -23146,14 +23146,14 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1676,
+ "id": 1677,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -23171,7 +23171,7 @@
}
},
{
- "id": 1675,
+ "id": 1676,
"name": "joinRef",
"variant": "declaration",
"kind": 1024,
@@ -23198,7 +23198,7 @@
}
},
{
- "id": 1674,
+ "id": 1675,
"name": "pendingDiffs",
"variant": "declaration",
"kind": 1024,
@@ -23224,7 +23224,7 @@
}
},
{
- "id": 1673,
+ "id": 1674,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -23238,7 +23238,7 @@
],
"type": {
"type": "reference",
- "target": 2217,
+ "target": 2218,
"name": "RealtimePresenceState",
"package": "@supabase/realtime-js"
}
@@ -23247,11 +23247,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1668]
+ "children": [1669]
},
{
"title": "Properties",
- "children": [1677, 1672, 1676, 1675, 1674, 1673]
+ "children": [1678, 1673, 1677, 1676, 1675, 1674]
}
],
"sources": [
@@ -23288,7 +23288,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"signatures": [
@@ -23322,7 +23322,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"typeParameters": [
@@ -23370,7 +23370,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -23390,7 +23390,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -23740,7 +23740,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -23760,7 +23760,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -23841,7 +23841,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -23864,7 +23864,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -23884,7 +23884,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -23902,7 +23902,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -23952,7 +23952,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -23972,7 +23972,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -24008,7 +24008,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -24028,7 +24028,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -24204,7 +24204,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -24220,7 +24220,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"signatures": [
@@ -24235,7 +24235,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -24286,7 +24286,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L73"
}
],
"type": {
@@ -24312,7 +24312,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 81,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L81"
}
],
"type": {
@@ -24339,7 +24339,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L87"
}
],
"type": {
@@ -24361,7 +24361,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 86,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L86"
}
],
"type": {
@@ -24590,7 +24590,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 83,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L83"
}
],
"type": {
@@ -24616,7 +24616,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 90,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L90"
}
],
"type": {
@@ -24650,12 +24650,12 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L74"
}
],
"type": {
"type": "reference",
- "target": 2004,
+ "target": 2005,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24674,7 +24674,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L80"
}
],
"type": {
@@ -24700,7 +24700,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L84"
}
],
"type": {
@@ -24758,7 +24758,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L78"
}
],
"type": {
@@ -24784,7 +24784,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 85,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L85"
}
],
"type": {
@@ -24805,7 +24805,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 82,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L82"
}
],
"type": {
@@ -24839,7 +24839,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 114,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L114"
}
],
"type": {
@@ -24868,7 +24868,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 113,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L113"
}
],
"type": {
@@ -24887,7 +24887,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L197"
}
],
"getSignature": {
@@ -24909,7 +24909,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L197"
}
],
"type": {
@@ -24934,7 +24934,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L311"
}
],
"signatures": [
@@ -24957,7 +24957,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 311,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L311"
}
],
"parameters": [
@@ -24996,7 +24996,7 @@
},
"type": {
"type": "reference",
- "target": 1989,
+ "target": 1990,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
},
@@ -25005,7 +25005,7 @@
],
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -25044,19 +25044,19 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 205,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L205"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L209"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 217,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L217"
}
],
"signatures": [
@@ -25071,7 +25071,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 205,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L205"
}
],
"typeParameters": [
@@ -25172,7 +25172,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L209"
}
],
"typeParameters": [
@@ -25275,7 +25275,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L318"
}
],
"signatures": [
@@ -25298,14 +25298,14 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 318,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L318"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -25325,7 +25325,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 335,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L335"
}
],
"signatures": [
@@ -25348,7 +25348,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 335,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L335"
}
],
"type": {
@@ -25396,7 +25396,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L328"
}
],
"signatures": [
@@ -25419,7 +25419,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L328"
}
],
"parameters": [
@@ -25439,7 +25439,7 @@
},
"type": {
"type": "reference",
- "target": 1684,
+ "target": 1685,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -25488,7 +25488,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L264"
}
],
"signatures": [
@@ -25511,7 +25511,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L264"
}
],
"typeParameters": [
@@ -25737,7 +25737,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 278,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L278"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L278"
}
],
"type": {
@@ -25787,7 +25787,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 277,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L277"
}
],
"type": {
@@ -25832,7 +25832,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 276,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L276"
}
],
"type": {
@@ -25852,7 +25852,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 275,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L275"
}
]
}
@@ -25961,7 +25961,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L229"
}
],
"signatures": [
@@ -25984,7 +25984,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L229"
}
],
"typeParameters": [
@@ -26132,7 +26132,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 37,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L37"
}
],
"typeParameters": [
@@ -26212,7 +26212,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -26232,7 +26232,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -26702,7 +26702,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -26722,7 +26722,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -26803,7 +26803,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -26826,7 +26826,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -26846,7 +26846,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -26864,7 +26864,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -26904,7 +26904,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -26924,7 +26924,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -26960,7 +26960,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -26980,7 +26980,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/2fe2b514bb45b07d7db1a739f70a24b61577c4aa/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/c9035515d733480b7f5ed3fdbb2c429fc0dade42/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -27003,7 +27003,7 @@
]
},
{
- "id": 2247,
+ "id": 2248,
"name": "WebSocketFactory",
"variant": "declaration",
"kind": 128,
@@ -27018,7 +27018,7 @@
},
"children": [
{
- "id": 2255,
+ "id": 2256,
"name": "createWebSocket",
"variant": "declaration",
"kind": 2048,
@@ -27034,7 +27034,7 @@
],
"signatures": [
{
- "id": 2256,
+ "id": 2257,
"name": "createWebSocket",
"variant": "signature",
"kind": 4096,
@@ -27067,7 +27067,7 @@
],
"parameters": [
{
- "id": 2257,
+ "id": 2258,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -27092,7 +27092,7 @@
}
},
{
- "id": 2258,
+ "id": 2259,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -27119,7 +27119,7 @@
],
"type": {
"type": "reference",
- "target": 2263,
+ "target": 2264,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -27127,7 +27127,7 @@
]
},
{
- "id": 2249,
+ "id": 2250,
"name": "getWebSocketConstructor",
"variant": "declaration",
"kind": 2048,
@@ -27143,7 +27143,7 @@
],
"signatures": [
{
- "id": 2250,
+ "id": 2251,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 4096,
@@ -27177,7 +27177,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2251,
+ "id": 2252,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -27191,7 +27191,7 @@
],
"signatures": [
{
- "id": 2252,
+ "id": 2253,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 16384,
@@ -27205,7 +27205,7 @@
],
"parameters": [
{
- "id": 2253,
+ "id": 2254,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -27230,7 +27230,7 @@
}
},
{
- "id": 2254,
+ "id": 2255,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -27272,7 +27272,7 @@
]
},
{
- "id": 2259,
+ "id": 2260,
"name": "isWebSocketSupported",
"variant": "declaration",
"kind": 2048,
@@ -27288,7 +27288,7 @@
],
"signatures": [
{
- "id": 2260,
+ "id": 2261,
"name": "isWebSocketSupported",
"variant": "signature",
"kind": 4096,
@@ -27330,7 +27330,7 @@
"groups": [
{
"title": "Methods",
- "children": [2255, 2249, 2259]
+ "children": [2256, 2250, 2260]
}
],
"sources": [
@@ -27342,14 +27342,14 @@
]
},
{
- "id": 884,
+ "id": 885,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 886,
+ "id": 887,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -27383,7 +27383,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 413,
+ "line": 421,
"character": 4
}
],
@@ -27393,7 +27393,7 @@
}
},
{
- "id": 889,
+ "id": 890,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -27411,7 +27411,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 436,
+ "line": 444,
"character": 4
}
],
@@ -27421,7 +27421,7 @@
}
},
{
- "id": 894,
+ "id": 895,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -27440,7 +27440,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 370,
+ "line": 378,
"character": 4
}
],
@@ -27455,7 +27455,7 @@
}
},
{
- "id": 887,
+ "id": 888,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -27473,7 +27473,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 419,
+ "line": 427,
"character": 4
}
],
@@ -27483,7 +27483,7 @@
}
},
{
- "id": 892,
+ "id": 893,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -27517,7 +27517,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 458,
+ "line": 466,
"character": 4
}
],
@@ -27527,7 +27527,7 @@
}
},
{
- "id": 893,
+ "id": 894,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -27546,7 +27546,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 384,
+ "line": 392,
"character": 4
}
],
@@ -27561,7 +27561,7 @@
}
},
{
- "id": 895,
+ "id": 896,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -27580,7 +27580,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 378,
+ "line": 386,
"character": 4
}
],
@@ -27595,7 +27595,7 @@
}
},
{
- "id": 891,
+ "id": 892,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -27621,7 +27621,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 452,
+ "line": 460,
"character": 4
}
],
@@ -27631,7 +27631,7 @@
}
},
{
- "id": 896,
+ "id": 897,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -27650,7 +27650,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 374,
+ "line": 382,
"character": 4
}
],
@@ -27665,7 +27665,7 @@
}
},
{
- "id": 888,
+ "id": 889,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -27683,7 +27683,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 425,
+ "line": 433,
"character": 4
}
],
@@ -27693,7 +27693,7 @@
}
},
{
- "id": 890,
+ "id": 891,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -27743,7 +27743,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 444,
+ "line": 452,
"character": 4
}
],
@@ -27753,7 +27753,7 @@
}
},
{
- "id": 885,
+ "id": 886,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -27787,7 +27787,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 404,
+ "line": 412,
"character": 4
}
],
@@ -27800,13 +27800,13 @@
"groups": [
{
"title": "Properties",
- "children": [886, 889, 894, 887, 892, 893, 895, 891, 896, 888, 890, 885]
+ "children": [887, 890, 895, 888, 893, 894, 896, 892, 897, 889, 891, 886]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 393,
+ "line": 401,
"character": 17
}
],
@@ -27820,7 +27820,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 878,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -27835,7 +27835,7 @@
]
},
{
- "id": 842,
+ "id": 843,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -27855,7 +27855,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1268
+ "target": 1269
},
{
"kind": "text",
@@ -27867,7 +27867,7 @@
},
"children": [
{
- "id": 843,
+ "id": 844,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -27883,19 +27883,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 271,
+ "line": 279,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 840,
+ "target": 841,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 844,
+ "id": 845,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -27911,7 +27911,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 276,
+ "line": 284,
"character": 4
}
],
@@ -27924,19 +27924,19 @@
"groups": [
{
"title": "Properties",
- "children": [843, 844]
+ "children": [844, 845]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 269,
+ "line": 277,
"character": 17
}
]
},
{
- "id": 1463,
+ "id": 1464,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -27951,7 +27951,7 @@
},
"children": [
{
- "id": 1467,
+ "id": 1468,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -27959,13 +27959,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1563,
+ "line": 1571,
"character": 4
}
],
"signatures": [
{
- "id": 1468,
+ "id": 1469,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -27992,13 +27992,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1563,
+ "line": 1571,
"character": 4
}
],
"parameters": [
{
- "id": 1469,
+ "id": 1470,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -28017,7 +28017,7 @@
}
},
{
- "id": 1470,
+ "id": 1471,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -28035,14 +28035,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1471,
+ "id": 1472,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1472,
+ "id": 1473,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -28060,7 +28060,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1564,
+ "line": 1572,
"character": 8
}
],
@@ -28073,13 +28073,13 @@
"groups": [
{
"title": "Properties",
- "children": [1472]
+ "children": [1473]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1563,
+ "line": 1571,
"character": 60
}
]
@@ -28096,7 +28096,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1454,
+ "target": 1455,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -28108,7 +28108,7 @@
]
},
{
- "id": 1473,
+ "id": 1474,
"name": "denyAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -28116,13 +28116,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1578,
+ "line": 1586,
"character": 4
}
],
"signatures": [
{
- "id": 1474,
+ "id": 1475,
"name": "denyAuthorization",
"variant": "signature",
"kind": 4096,
@@ -28149,13 +28149,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1578,
+ "line": 1586,
"character": 4
}
],
"parameters": [
{
- "id": 1475,
+ "id": 1476,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -28174,7 +28174,7 @@
}
},
{
- "id": 1476,
+ "id": 1477,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -28192,14 +28192,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1477,
+ "id": 1478,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1478,
+ "id": 1479,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -28217,7 +28217,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1579,
+ "line": 1587,
"character": 8
}
],
@@ -28230,13 +28230,13 @@
"groups": [
{
"title": "Properties",
- "children": [1478]
+ "children": [1479]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1578,
+ "line": 1586,
"character": 57
}
]
@@ -28253,7 +28253,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1454,
+ "target": 1455,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -28265,7 +28265,7 @@
]
},
{
- "id": 1464,
+ "id": 1465,
"name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
@@ -28273,13 +28273,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1550,
+ "line": 1558,
"character": 4
}
],
"signatures": [
{
- "id": 1465,
+ "id": 1466,
"name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
@@ -28326,13 +28326,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1550,
+ "line": 1558,
"character": 4
}
],
"parameters": [
{
- "id": 1466,
+ "id": 1467,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -28360,7 +28360,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1453,
+ "target": 1454,
"name": "AuthOAuthAuthorizationDetailsResponse",
"package": "@supabase/auth-js"
}
@@ -28372,7 +28372,7 @@
]
},
{
- "id": 1479,
+ "id": 1480,
"name": "listGrants",
"variant": "declaration",
"kind": 2048,
@@ -28380,13 +28380,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1587,
+ "line": 1595,
"character": 4
}
],
"signatures": [
{
- "id": 1480,
+ "id": 1481,
"name": "listGrants",
"variant": "signature",
"kind": 4096,
@@ -28413,7 +28413,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1587,
+ "line": 1595,
"character": 4
}
],
@@ -28426,7 +28426,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1460,
+ "target": 1461,
"name": "AuthOAuthGrantsResponse",
"package": "@supabase/auth-js"
}
@@ -28438,7 +28438,7 @@
]
},
{
- "id": 1481,
+ "id": 1482,
"name": "revokeGrant",
"variant": "declaration",
"kind": 2048,
@@ -28446,13 +28446,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1599,
+ "line": 1607,
"character": 4
}
],
"signatures": [
{
- "id": 1482,
+ "id": 1483,
"name": "revokeGrant",
"variant": "signature",
"kind": 4096,
@@ -28479,13 +28479,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1599,
+ "line": 1607,
"character": 4
}
],
"parameters": [
{
- "id": 1483,
+ "id": 1484,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -28501,14 +28501,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1484,
+ "id": 1485,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1485,
+ "id": 1486,
"name": "clientId",
"variant": "declaration",
"kind": 1024,
@@ -28524,7 +28524,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1600,
+ "line": 1608,
"character": 8
}
],
@@ -28537,13 +28537,13 @@
"groups": [
{
"title": "Properties",
- "children": [1485]
+ "children": [1486]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1599,
+ "line": 1607,
"character": 25
}
]
@@ -28560,7 +28560,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1461,
+ "target": 1462,
"name": "AuthOAuthRevokeGrantResponse",
"package": "@supabase/auth-js"
}
@@ -28575,13 +28575,13 @@
"groups": [
{
"title": "Methods",
- "children": [1467, 1473, 1464, 1479, 1481]
+ "children": [1468, 1474, 1465, 1480, 1482]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1528,
+ "line": 1536,
"character": 17
}
]
@@ -28610,7 +28610,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 236,
+ "line": 244,
"character": 4
}
],
@@ -28638,7 +28638,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 248,
+ "line": 256,
"character": 4
}
],
@@ -28664,7 +28664,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 244,
+ "line": 252,
"character": 4
}
],
@@ -28692,7 +28692,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 232,
+ "line": 240,
"character": 4
}
],
@@ -28729,7 +28729,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 227,
+ "line": 235,
"character": 4
}
],
@@ -28764,7 +28764,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 240,
+ "line": 248,
"character": 4
}
],
@@ -28782,7 +28782,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 249,
+ "line": 257,
"character": 4
}
],
@@ -28808,7 +28808,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 253,
+ "line": 261,
"character": 4
}
],
@@ -28829,7 +28829,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 223,
+ "line": 231,
"character": 17
}
]
@@ -28852,7 +28852,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 349,
+ "line": 357,
"character": 4
}
],
@@ -28870,13 +28870,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 340,
+ "line": 348,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
@@ -28890,7 +28890,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 342,
+ "line": 350,
"character": 4
}
],
@@ -28910,7 +28910,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 364,
+ "line": 372,
"character": 4
}
],
@@ -28930,7 +28930,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 343,
+ "line": 351,
"character": 4
}
],
@@ -28950,7 +28950,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 353,
+ "line": 361,
"character": 4
}
],
@@ -28968,7 +28968,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 352,
+ "line": 360,
"character": 4
}
],
@@ -28988,7 +28988,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 363,
+ "line": 371,
"character": 4
}
],
@@ -29008,7 +29008,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 350,
+ "line": 358,
"character": 4
}
],
@@ -29028,7 +29028,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 345,
+ "line": 353,
"character": 4
}
],
@@ -29048,7 +29048,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 354,
+ "line": 362,
"character": 4
}
],
@@ -29068,7 +29068,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 362,
+ "line": 370,
"character": 4
}
],
@@ -29079,7 +29079,7 @@
"types": [
{
"type": "reference",
- "target": 858,
+ "target": 859,
"typeArguments": [
{
"type": "union",
@@ -29108,7 +29108,7 @@
},
{
"type": "reference",
- "target": 858,
+ "target": 859,
"typeArguments": [
{
"type": "union",
@@ -29148,7 +29148,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 339,
+ "line": 347,
"character": 4
}
],
@@ -29168,7 +29168,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 359,
+ "line": 367,
"character": 4
}
],
@@ -29176,7 +29176,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 845,
+ "target": 846,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -29193,7 +29193,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 348,
+ "line": 356,
"character": 4
}
],
@@ -29213,7 +29213,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 360,
+ "line": 368,
"character": 4
}
],
@@ -29233,7 +29233,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 361,
+ "line": 369,
"character": 4
}
],
@@ -29253,7 +29253,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 356,
+ "line": 364,
"character": 4
}
],
@@ -29273,7 +29273,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 346,
+ "line": 354,
"character": 4
}
],
@@ -29293,7 +29293,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 347,
+ "line": 355,
"character": 4
}
],
@@ -29313,7 +29313,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 351,
+ "line": 359,
"character": 4
}
],
@@ -29333,7 +29333,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 355,
+ "line": 363,
"character": 4
}
],
@@ -29353,7 +29353,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 344,
+ "line": 352,
"character": 4
}
],
@@ -29373,7 +29373,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 357,
+ "line": 365,
"character": 4
}
],
@@ -29393,7 +29393,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 358,
+ "line": 366,
"character": 4
}
],
@@ -29411,13 +29411,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 341,
+ "line": 349,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 874,
+ "target": 875,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -29435,20 +29435,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 338,
+ "line": 346,
"character": 17
}
]
},
{
- "id": 1091,
+ "id": 1092,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1092,
+ "id": 1093,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29482,7 +29482,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 757,
+ "line": 765,
"character": 4
}
],
@@ -29492,7 +29492,7 @@
}
},
{
- "id": 1093,
+ "id": 1094,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -29510,7 +29510,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 759,
+ "line": 767,
"character": 4
}
],
@@ -29523,19 +29523,19 @@
"groups": [
{
"title": "Properties",
- "children": [1092, 1093]
+ "children": [1093, 1094]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 751,
+ "line": 759,
"character": 17
}
]
},
{
- "id": 1285,
+ "id": 1286,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -29556,7 +29556,7 @@
},
"children": [
{
- "id": 1289,
+ "id": 1290,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -29564,13 +29564,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1096,
+ "line": 1104,
"character": 4
}
],
"signatures": [
{
- "id": 1290,
+ "id": 1291,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -29590,7 +29590,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1257
+ "target": 1258
}
]
},
@@ -29603,20 +29603,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1096,
+ "line": 1104,
"character": 4
}
],
"parameters": [
{
- "id": 1291,
+ "id": 1292,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1275,
+ "target": 1276,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -29631,7 +29631,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1272,
+ "target": 1273,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -29643,7 +29643,7 @@
]
},
{
- "id": 1286,
+ "id": 1287,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -29651,13 +29651,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1087,
+ "line": 1095,
"character": 4
}
],
"signatures": [
{
- "id": 1287,
+ "id": 1288,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -29673,20 +29673,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1087,
+ "line": 1095,
"character": 4
}
],
"parameters": [
{
- "id": 1288,
+ "id": 1289,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1282,
+ "target": 1283,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -29701,7 +29701,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1279,
+ "target": 1280,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -29716,19 +29716,19 @@
"groups": [
{
"title": "Methods",
- "children": [1289, 1286]
+ "children": [1290, 1287]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1082,
+ "line": 1090,
"character": 17
}
]
},
{
- "id": 1411,
+ "id": 1412,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -29743,7 +29743,7 @@
},
"children": [
{
- "id": 1415,
+ "id": 1416,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -29751,13 +29751,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1380,
+ "line": 1388,
"character": 4
}
],
"signatures": [
{
- "id": 1416,
+ "id": 1417,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -29781,20 +29781,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1380,
+ "line": 1388,
"character": 4
}
],
"parameters": [
{
- "id": 1417,
+ "id": 1418,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1383,
+ "target": 1384,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -29809,7 +29809,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -29821,7 +29821,7 @@
]
},
{
- "id": 1425,
+ "id": 1426,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -29829,13 +29829,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1401,
+ "line": 1409,
"character": 4
}
],
"signatures": [
{
- "id": 1426,
+ "id": 1427,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -29859,13 +29859,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1401,
+ "line": 1409,
"character": 4
}
],
"parameters": [
{
- "id": 1427,
+ "id": 1428,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -29886,14 +29886,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1428,
+ "id": 1429,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1429,
+ "id": 1430,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29901,7 +29901,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1402,
+ "line": 1410,
"character": 8
}
],
@@ -29911,7 +29911,7 @@
}
},
{
- "id": 1430,
+ "id": 1431,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29919,7 +29919,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1403,
+ "line": 1411,
"character": 8
}
],
@@ -29932,7 +29932,7 @@
},
{
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -29943,13 +29943,13 @@
"groups": [
{
"title": "Properties",
- "children": [1429, 1430]
+ "children": [1430, 1431]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1401,
+ "line": 1409,
"character": 44
}
]
@@ -29963,7 +29963,7 @@
]
},
{
- "id": 1418,
+ "id": 1419,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -29971,13 +29971,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1387,
+ "line": 1395,
"character": 4
}
],
"signatures": [
{
- "id": 1419,
+ "id": 1420,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -30001,13 +30001,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1387,
+ "line": 1395,
"character": 4
}
],
"parameters": [
{
- "id": 1420,
+ "id": 1421,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -30027,7 +30027,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -30039,7 +30039,7 @@
]
},
{
- "id": 1412,
+ "id": 1413,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -30047,13 +30047,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1373,
+ "line": 1381,
"character": 4
}
],
"signatures": [
{
- "id": 1413,
+ "id": 1414,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -30077,13 +30077,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1373,
+ "line": 1381,
"character": 4
}
],
"parameters": [
{
- "id": 1414,
+ "id": 1415,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30092,7 +30092,7 @@
},
"type": {
"type": "reference",
- "target": 1306,
+ "target": 1307,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -30107,7 +30107,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1399,
+ "target": 1400,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -30119,7 +30119,7 @@
]
},
{
- "id": 1431,
+ "id": 1432,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -30127,13 +30127,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1411,
+ "line": 1419,
"character": 4
}
],
"signatures": [
{
- "id": 1432,
+ "id": 1433,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -30157,13 +30157,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1411,
+ "line": 1419,
"character": 4
}
],
"parameters": [
{
- "id": 1433,
+ "id": 1434,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -30183,7 +30183,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -30195,7 +30195,7 @@
]
},
{
- "id": 1421,
+ "id": 1422,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -30203,13 +30203,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1394,
+ "line": 1402,
"character": 4
}
],
"signatures": [
{
- "id": 1422,
+ "id": 1423,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -30233,13 +30233,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1394,
+ "line": 1402,
"character": 4
}
],
"parameters": [
{
- "id": 1423,
+ "id": 1424,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -30250,14 +30250,14 @@
}
},
{
- "id": 1424,
+ "id": 1425,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1391,
+ "target": 1392,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -30272,7 +30272,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1398,
+ "target": 1399,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -30287,19 +30287,19 @@
"groups": [
{
"title": "Methods",
- "children": [1415, 1425, 1418, 1412, 1431, 1421]
+ "children": [1416, 1426, 1419, 1413, 1432, 1422]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1366,
+ "line": 1374,
"character": 17
}
]
},
{
- "id": 1154,
+ "id": 1155,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -30314,7 +30314,7 @@
},
"children": [
{
- "id": 1271,
+ "id": 1272,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -30322,7 +30322,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1045,
+ "line": 1053,
"character": 4
}
],
@@ -30337,7 +30337,7 @@
}
},
{
- "id": 1175,
+ "id": 1176,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -30345,28 +30345,28 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 998,
+ "line": 1006,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 999,
+ "line": 1007,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1000,
+ "line": 1008,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1001,
+ "line": 1009,
"character": 4
}
],
"signatures": [
{
- "id": 1176,
+ "id": 1177,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -30382,13 +30382,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 998,
+ "line": 1006,
"character": 4
}
],
"parameters": [
{
- "id": 1177,
+ "id": 1178,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30396,14 +30396,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1178,
+ "id": 1179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1179,
+ "id": 1180,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -30419,7 +30419,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 836,
+ "line": 844,
"character": 4
}
],
@@ -30432,13 +30432,13 @@
"groups": [
{
"title": "Properties",
- "children": [1179]
+ "children": [1180]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30459,14 +30459,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1180,
+ "id": 1181,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1181,
+ "id": 1182,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30474,7 +30474,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 153,
+ "line": 161,
"character": 4
}
],
@@ -30484,7 +30484,7 @@
}
},
{
- "id": 1182,
+ "id": 1183,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30492,13 +30492,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 154,
+ "line": 162,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30507,13 +30507,13 @@
"groups": [
{
"title": "Properties",
- "children": [1181, 1182]
+ "children": [1182, 1183]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30522,14 +30522,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1183,
+ "id": 1184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1184,
+ "id": 1185,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30537,21 +30537,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 150,
+ "line": 158,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1185,
+ "id": 1186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1188,
+ "id": 1189,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -30567,7 +30567,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 898,
+ "line": 906,
"character": 4
}
],
@@ -30577,7 +30577,7 @@
}
},
{
- "id": 1186,
+ "id": 1187,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -30593,7 +30593,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 894,
+ "line": 902,
"character": 4
}
],
@@ -30603,7 +30603,7 @@
}
},
{
- "id": 1187,
+ "id": 1188,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30619,7 +30619,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 896,
+ "line": 904,
"character": 4
}
],
@@ -30632,13 +30632,13 @@
"groups": [
{
"title": "Properties",
- "children": [1188, 1186, 1187]
+ "children": [1189, 1187, 1188]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30646,7 +30646,7 @@
}
},
{
- "id": 1189,
+ "id": 1190,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30654,7 +30654,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 151,
+ "line": 159,
"character": 4
}
],
@@ -30667,13 +30667,13 @@
"groups": [
{
"title": "Properties",
- "children": [1184, 1189]
+ "children": [1185, 1190]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30687,7 +30687,7 @@
}
},
{
- "id": 1190,
+ "id": 1191,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -30695,13 +30695,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 999,
+ "line": 1007,
"character": 4
}
],
"parameters": [
{
- "id": 1191,
+ "id": 1192,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30709,14 +30709,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1192,
+ "id": 1193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1194,
+ "id": 1195,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -30732,7 +30732,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 843,
+ "line": 851,
"character": 4
}
],
@@ -30751,7 +30751,7 @@
}
},
{
- "id": 1193,
+ "id": 1194,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -30767,7 +30767,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 836,
+ "line": 844,
"character": 4
}
],
@@ -30780,13 +30780,13 @@
"groups": [
{
"title": "Properties",
- "children": [1194, 1193]
+ "children": [1195, 1194]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30807,14 +30807,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1195,
+ "id": 1196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1196,
+ "id": 1197,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30822,7 +30822,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 153,
+ "line": 161,
"character": 4
}
],
@@ -30832,7 +30832,7 @@
}
},
{
- "id": 1197,
+ "id": 1198,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30840,13 +30840,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 154,
+ "line": 162,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30855,13 +30855,13 @@
"groups": [
{
"title": "Properties",
- "children": [1196, 1197]
+ "children": [1197, 1198]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30870,14 +30870,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1198,
+ "id": 1199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1199,
+ "id": 1200,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30885,21 +30885,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 150,
+ "line": 158,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1200,
+ "id": 1201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1203,
+ "id": 1204,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -30915,7 +30915,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 898,
+ "line": 906,
"character": 4
}
],
@@ -30925,7 +30925,7 @@
}
},
{
- "id": 1201,
+ "id": 1202,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -30941,7 +30941,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 894,
+ "line": 902,
"character": 4
}
],
@@ -30951,7 +30951,7 @@
}
},
{
- "id": 1202,
+ "id": 1203,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30967,7 +30967,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 896,
+ "line": 904,
"character": 4
}
],
@@ -30980,13 +30980,13 @@
"groups": [
{
"title": "Properties",
- "children": [1203, 1201, 1202]
+ "children": [1204, 1202, 1203]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -30994,7 +30994,7 @@
}
},
{
- "id": 1204,
+ "id": 1205,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31002,7 +31002,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 151,
+ "line": 159,
"character": 4
}
],
@@ -31015,13 +31015,13 @@
"groups": [
{
"title": "Properties",
- "children": [1199, 1204]
+ "children": [1200, 1205]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31035,7 +31035,7 @@
}
},
{
- "id": 1205,
+ "id": 1206,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -31043,13 +31043,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1000,
+ "line": 1008,
"character": 4
}
],
"parameters": [
{
- "id": 1206,
+ "id": 1207,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31057,14 +31057,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1207,
+ "id": 1208,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1208,
+ "id": 1209,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31080,7 +31080,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 836,
+ "line": 844,
"character": 4
}
],
@@ -31090,7 +31090,7 @@
}
},
{
- "id": 1209,
+ "id": 1210,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -31098,21 +31098,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 848,
+ "line": 856,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1210,
+ "id": 1211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1211,
+ "id": 1212,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -31128,7 +31128,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 850,
+ "line": 858,
"character": 8
}
],
@@ -31138,7 +31138,7 @@
}
},
{
- "id": 1212,
+ "id": 1213,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -31156,7 +31156,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 852,
+ "line": 860,
"character": 8
}
],
@@ -31172,13 +31172,13 @@
"groups": [
{
"title": "Properties",
- "children": [1211, 1212]
+ "children": [1212, 1213]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 848,
+ "line": 856,
"character": 14
}
]
@@ -31189,13 +31189,13 @@
"groups": [
{
"title": "Properties",
- "children": [1208, 1209]
+ "children": [1209, 1210]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31216,14 +31216,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1213,
+ "id": 1214,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1214,
+ "id": 1215,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -31231,7 +31231,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 153,
+ "line": 161,
"character": 4
}
],
@@ -31241,7 +31241,7 @@
}
},
{
- "id": 1215,
+ "id": 1216,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31249,13 +31249,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 154,
+ "line": 162,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1508,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -31264,13 +31264,13 @@
"groups": [
{
"title": "Properties",
- "children": [1214, 1215]
+ "children": [1215, 1216]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31279,14 +31279,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1216,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1217,
+ "id": 1218,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -31294,21 +31294,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 150,
+ "line": 158,
"character": 4
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1218,
+ "id": 1219,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1221,
+ "id": 1222,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -31324,7 +31324,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 898,
+ "line": 906,
"character": 4
}
],
@@ -31334,7 +31334,7 @@
}
},
{
- "id": 1219,
+ "id": 1220,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -31350,7 +31350,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 894,
+ "line": 902,
"character": 4
}
],
@@ -31360,7 +31360,7 @@
}
},
{
- "id": 1220,
+ "id": 1221,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -31376,7 +31376,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 896,
+ "line": 904,
"character": 4
}
],
@@ -31386,7 +31386,7 @@
}
},
{
- "id": 1222,
+ "id": 1223,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -31394,7 +31394,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 905,
+ "line": 913,
"character": 4
}
],
@@ -31404,14 +31404,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1223,
+ "id": 1224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1225,
+ "id": 1226,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -31419,21 +31419,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 907,
+ "line": 915,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1226,
+ "id": 1227,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1227,
+ "id": 1228,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -31441,7 +31441,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 908,
+ "line": 916,
"character": 12
}
],
@@ -31459,13 +31459,13 @@
"groups": [
{
"title": "Properties",
- "children": [1227]
+ "children": [1228]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 907,
+ "line": 915,
"character": 28
}
]
@@ -31473,7 +31473,7 @@
}
},
{
- "id": 1224,
+ "id": 1225,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -31481,7 +31481,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 906,
+ "line": 914,
"character": 8
}
],
@@ -31494,13 +31494,13 @@
"groups": [
{
"title": "Properties",
- "children": [1225, 1224]
+ "children": [1226, 1225]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 905,
+ "line": 913,
"character": 14
}
]
@@ -31509,14 +31509,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1228,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1230,
+ "id": 1231,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -31524,21 +31524,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 912,
+ "line": 920,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1231,
+ "id": 1232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1232,
+ "id": 1233,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -31546,7 +31546,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 913,
+ "line": 921,
"character": 12
}
],
@@ -31564,13 +31564,13 @@
"groups": [
{
"title": "Properties",
- "children": [1232]
+ "children": [1233]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 912,
+ "line": 920,
"character": 28
}
]
@@ -31578,7 +31578,7 @@
}
},
{
- "id": 1229,
+ "id": 1230,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -31586,7 +31586,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 911,
+ "line": 919,
"character": 8
}
],
@@ -31599,13 +31599,13 @@
"groups": [
{
"title": "Properties",
- "children": [1230, 1229]
+ "children": [1231, 1230]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 910,
+ "line": 918,
"character": 8
}
]
@@ -31618,13 +31618,13 @@
"groups": [
{
"title": "Properties",
- "children": [1221, 1219, 1220, 1222]
+ "children": [1222, 1220, 1221, 1223]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31632,7 +31632,7 @@
}
},
{
- "id": 1233,
+ "id": 1234,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31640,7 +31640,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 151,
+ "line": 159,
"character": 4
}
],
@@ -31653,13 +31653,13 @@
"groups": [
{
"title": "Properties",
- "children": [1217, 1233]
+ "children": [1218, 1234]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31673,7 +31673,7 @@
}
},
{
- "id": 1234,
+ "id": 1235,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -31681,20 +31681,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1001,
+ "line": 1009,
"character": 4
}
],
"parameters": [
{
- "id": 1235,
+ "id": 1236,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1124,
+ "target": 1125,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -31709,7 +31709,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1143,
+ "target": 1144,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -31721,7 +31721,7 @@
]
},
{
- "id": 1260,
+ "id": 1261,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -31729,13 +31729,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1019,
+ "line": 1027,
"character": 4
}
],
"signatures": [
{
- "id": 1261,
+ "id": 1262,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -31751,13 +31751,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1019,
+ "line": 1027,
"character": 4
}
],
"parameters": [
{
- "id": 1262,
+ "id": 1263,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31765,14 +31765,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1263,
+ "id": 1264,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1265,
+ "id": 1266,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -31788,7 +31788,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 801,
+ "line": 809,
"character": 4
}
],
@@ -31798,7 +31798,7 @@
}
},
{
- "id": 1264,
+ "id": 1265,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31814,7 +31814,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -31827,13 +31827,13 @@
"groups": [
{
"title": "Properties",
- "children": [1265, 1264]
+ "children": [1266, 1265]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -31850,7 +31850,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31862,7 +31862,7 @@
]
},
{
- "id": 1155,
+ "id": 1156,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -31870,28 +31870,28 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 990,
+ "line": 998,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 991,
+ "line": 999,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 992,
+ "line": 1000,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 993,
+ "line": 1001,
"character": 4
}
],
"signatures": [
{
- "id": 1156,
+ "id": 1157,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -31923,13 +31923,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 990,
+ "line": 998,
"character": 4
}
],
"parameters": [
{
- "id": 1157,
+ "id": 1158,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31937,14 +31937,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1158,
+ "id": 1159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1159,
+ "id": 1160,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -31960,7 +31960,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1144,
+ "line": 1152,
"character": 4
}
],
@@ -31970,7 +31970,7 @@
}
},
{
- "id": 1160,
+ "id": 1161,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -31988,7 +31988,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1146,
+ "line": 1154,
"character": 4
}
],
@@ -31998,7 +31998,7 @@
}
},
{
- "id": 1161,
+ "id": 1162,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -32016,7 +32016,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1150,
+ "line": 1158,
"character": 4
}
],
@@ -32029,13 +32029,13 @@
"groups": [
{
"title": "Properties",
- "children": [1159, 1160, 1161]
+ "children": [1160, 1161, 1162]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32052,7 +32052,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1316,
+ "target": 1317,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -32062,7 +32062,7 @@
}
},
{
- "id": 1162,
+ "id": 1163,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -32070,13 +32070,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 991,
+ "line": 999,
"character": 4
}
],
"parameters": [
{
- "id": 1163,
+ "id": 1164,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32084,14 +32084,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1164,
+ "id": 1165,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1165,
+ "id": 1166,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -32107,7 +32107,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1144,
+ "line": 1152,
"character": 4
}
],
@@ -32117,7 +32117,7 @@
}
},
{
- "id": 1166,
+ "id": 1167,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -32135,7 +32135,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1146,
+ "line": 1154,
"character": 4
}
],
@@ -32145,7 +32145,7 @@
}
},
{
- "id": 1167,
+ "id": 1168,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -32161,7 +32161,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1155,
+ "line": 1163,
"character": 4
}
],
@@ -32174,13 +32174,13 @@
"groups": [
{
"title": "Properties",
- "children": [1165, 1166, 1167]
+ "children": [1166, 1167, 1168]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32197,7 +32197,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1317,
+ "target": 1318,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -32207,7 +32207,7 @@
}
},
{
- "id": 1168,
+ "id": 1169,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -32215,13 +32215,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 992,
+ "line": 1000,
"character": 4
}
],
"parameters": [
{
- "id": 1169,
+ "id": 1170,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32229,14 +32229,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1170,
+ "id": 1171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1171,
+ "id": 1172,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -32252,7 +32252,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1144,
+ "line": 1152,
"character": 4
}
],
@@ -32262,7 +32262,7 @@
}
},
{
- "id": 1172,
+ "id": 1173,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -32280,7 +32280,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1146,
+ "line": 1154,
"character": 4
}
],
@@ -32293,13 +32293,13 @@
"groups": [
{
"title": "Properties",
- "children": [1171, 1172]
+ "children": [1172, 1173]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32316,7 +32316,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1318,
+ "target": 1319,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -32326,7 +32326,7 @@
}
},
{
- "id": 1173,
+ "id": 1174,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -32334,20 +32334,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 993,
+ "line": 1001,
"character": 4
}
],
"parameters": [
{
- "id": 1174,
+ "id": 1175,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1107,
+ "target": 1108,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -32362,7 +32362,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1134,
+ "target": 1135,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -32374,7 +32374,7 @@
]
},
{
- "id": 1268,
+ "id": 1269,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -32382,13 +32382,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1044,
+ "line": 1052,
"character": 4
}
],
"signatures": [
{
- "id": 1269,
+ "id": 1270,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -32428,13 +32428,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1044,
+ "line": 1052,
"character": 4
}
],
"parameters": [
{
- "id": 1270,
+ "id": 1271,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -32464,7 +32464,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1149,
+ "target": 1150,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -32476,7 +32476,7 @@
]
},
{
- "id": 1266,
+ "id": 1267,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -32484,13 +32484,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1028,
+ "line": 1036,
"character": 4
}
],
"signatures": [
{
- "id": 1267,
+ "id": 1268,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -32514,7 +32514,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1155
+ "target": 1156
},
{
"kind": "text",
@@ -32528,7 +32528,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1268
+ "target": 1269
},
{
"kind": "text",
@@ -32555,7 +32555,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1028,
+ "line": 1036,
"character": 4
}
],
@@ -32568,7 +32568,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1144,
+ "target": 1145,
"typeArguments": [
{
"type": "typeOperator",
@@ -32603,7 +32603,7 @@
]
},
{
- "id": 1257,
+ "id": 1258,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -32611,13 +32611,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1014,
+ "line": 1022,
"character": 4
}
],
"signatures": [
{
- "id": 1258,
+ "id": 1259,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -32649,20 +32649,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1014,
+ "line": 1022,
"character": 4
}
],
"parameters": [
{
- "id": 1259,
+ "id": 1260,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1108,
+ "target": 1109,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -32677,7 +32677,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1135,
+ "target": 1136,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -32689,7 +32689,7 @@
]
},
{
- "id": 1236,
+ "id": 1237,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -32697,28 +32697,28 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1006,
+ "line": 1014,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1007,
+ "line": 1015,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1008,
+ "line": 1016,
"character": 4
},
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1009,
+ "line": 1017,
"character": 4
}
],
"signatures": [
{
- "id": 1237,
+ "id": 1238,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -32734,13 +32734,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1006,
+ "line": 1014,
"character": 4
}
],
"parameters": [
{
- "id": 1238,
+ "id": 1239,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32748,14 +32748,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1241,
+ "id": 1242,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -32771,7 +32771,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 797,
+ "line": 805,
"character": 4
}
],
@@ -32781,7 +32781,7 @@
}
},
{
- "id": 1242,
+ "id": 1243,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -32797,7 +32797,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 801,
+ "line": 809,
"character": 4
}
],
@@ -32807,7 +32807,7 @@
}
},
{
- "id": 1240,
+ "id": 1241,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -32823,7 +32823,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -32836,13 +32836,13 @@
"groups": [
{
"title": "Properties",
- "children": [1241, 1242, 1240]
+ "children": [1242, 1243, 1241]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -32859,7 +32859,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -32869,7 +32869,7 @@
}
},
{
- "id": 1243,
+ "id": 1244,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -32877,13 +32877,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1007,
+ "line": 1015,
"character": 4
}
],
"parameters": [
{
- "id": 1244,
+ "id": 1245,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -32891,14 +32891,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1245,
+ "id": 1246,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1247,
+ "id": 1248,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -32914,7 +32914,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 797,
+ "line": 805,
"character": 4
}
],
@@ -32924,7 +32924,7 @@
}
},
{
- "id": 1248,
+ "id": 1249,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -32940,7 +32940,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 801,
+ "line": 809,
"character": 4
}
],
@@ -32950,7 +32950,7 @@
}
},
{
- "id": 1246,
+ "id": 1247,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -32966,7 +32966,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -32979,13 +32979,13 @@
"groups": [
{
"title": "Properties",
- "children": [1247, 1248, 1246]
+ "children": [1248, 1249, 1247]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -33002,7 +33002,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -33012,7 +33012,7 @@
}
},
{
- "id": 1249,
+ "id": 1250,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -33020,13 +33020,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1008,
+ "line": 1016,
"character": 4
}
],
"parameters": [
{
- "id": 1250,
+ "id": 1251,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -33034,14 +33034,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1251,
+ "id": 1252,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1253,
+ "id": 1254,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -33057,7 +33057,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 797,
+ "line": 805,
"character": 4
}
],
@@ -33067,7 +33067,7 @@
}
},
{
- "id": 1252,
+ "id": 1253,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -33083,7 +33083,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 795,
+ "line": 803,
"character": 4
}
],
@@ -33093,7 +33093,7 @@
}
},
{
- "id": 1254,
+ "id": 1255,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -33101,7 +33101,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 824,
+ "line": 832,
"character": 4
}
],
@@ -33148,13 +33148,13 @@
"groups": [
{
"title": "Properties",
- "children": [1253, 1252, 1254]
+ "children": [1254, 1253, 1255]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 137,
+ "line": 145,
"character": 51
}
]
@@ -33171,7 +33171,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -33181,7 +33181,7 @@
}
},
{
- "id": 1255,
+ "id": 1256,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -33189,20 +33189,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1009,
+ "line": 1017,
"character": 4
}
],
"parameters": [
{
- "id": 1256,
+ "id": 1257,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1119,
+ "target": 1120,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -33217,7 +33217,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1133,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -33232,30 +33232,30 @@
"groups": [
{
"title": "Properties",
- "children": [1271]
+ "children": [1272]
},
{
"title": "Methods",
- "children": [1175, 1260, 1155, 1268, 1266, 1257, 1236]
+ "children": [1176, 1261, 1156, 1269, 1267, 1258, 1237]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 980,
+ "line": 988,
"character": 17
}
]
},
{
- "id": 1354,
+ "id": 1355,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1357,
+ "id": 1358,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -33265,7 +33265,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1246,
+ "line": 1254,
"character": 4
}
],
@@ -33275,7 +33275,7 @@
}
},
{
- "id": 1356,
+ "id": 1357,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -33283,7 +33283,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1245,
+ "line": 1253,
"character": 4
}
],
@@ -33296,7 +33296,7 @@
}
},
{
- "id": 1358,
+ "id": 1359,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -33306,7 +33306,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1247,
+ "line": 1255,
"character": 4
}
],
@@ -33316,7 +33316,7 @@
}
},
{
- "id": 1355,
+ "id": 1356,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -33324,7 +33324,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1244,
+ "line": 1252,
"character": 4
}
],
@@ -33350,19 +33350,19 @@
"groups": [
{
"title": "Properties",
- "children": [1357, 1356, 1358, 1355]
+ "children": [1358, 1357, 1359, 1356]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1243,
+ "line": 1251,
"character": 17
}
],
"indexSignatures": [
{
- "id": 1359,
+ "id": 1360,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -33370,13 +33370,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1248,
+ "line": 1256,
"character": 4
}
],
"parameters": [
{
- "id": 1360,
+ "id": 1361,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33395,7 +33395,7 @@
]
},
{
- "id": 1334,
+ "id": 1335,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -33421,7 +33421,7 @@
},
"children": [
{
- "id": 1350,
+ "id": 1351,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -33431,13 +33431,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1214,
+ "line": 1222,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 1148,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -33448,7 +33448,7 @@
}
},
{
- "id": 1342,
+ "id": 1343,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -33466,7 +33466,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1239,
+ "line": 1247,
"character": 4
}
],
@@ -33484,7 +33484,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 842,
+ "target": 843,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
@@ -33493,7 +33493,7 @@
}
},
{
- "id": 1340,
+ "id": 1341,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -33503,19 +33503,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1231,
+ "line": 1239,
"character": 4
}
],
"type": {
"type": "reference",
- "target": 869,
+ "target": 870,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1346,
+ "id": 1347,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -33525,7 +33525,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1210,
+ "line": 1218,
"character": 4
}
],
@@ -33552,7 +33552,7 @@
}
},
{
- "id": 1335,
+ "id": 1336,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -33562,7 +33562,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1226,
+ "line": 1234,
"character": 4
}
],
@@ -33572,7 +33572,7 @@
}
},
{
- "id": 1347,
+ "id": 1348,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -33582,7 +33582,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1211,
+ "line": 1219,
"character": 4
}